Difference between revisions of "Trap"

From Computer History Wiki
Jump to: navigation, search
m (Add 'fault' term)
m (Proper cat)
Line 1: Line 1:
 
A '''trap''' of '''fault''' is similar to an [[interrupt]] in terms of the mechanism, and what happens when one occurs (in terms of saving the state of the [[Central Processing Unit|CPU]] at the time the trap happened, and the invocation of a '''trap handler'''), but differs from an interrupt in that the latter is usually caused by some ''external'' event, whereas traps are almost always caused by an ''internal'' event.
 
A '''trap''' of '''fault''' is similar to an [[interrupt]] in terms of the mechanism, and what happens when one occurs (in terms of saving the state of the [[Central Processing Unit|CPU]] at the time the trap happened, and the invocation of a '''trap handler'''), but differs from an interrupt in that the latter is usually caused by some ''external'' event, whereas traps are almost always caused by an ''internal'' event.
  
For example, traps may happen in response to things like an attempt to divide by zero, or an attempt to take some action that it not allowed to a [[user]]'s [[process]], only the [[operating system]] (e.g. halt the machine).
+
For example, traps may happen in response to things like an attempt to divide by zero, or an attempt to take some action that it not allowed to a [[user]]'s [[process]], only to the [[operating system]] (e.g. [[halt]] the machine).
  
{{stub}}
+
{{semi-stub}}

Revision as of 20:53, 21 October 2018

A trap of fault is similar to an interrupt in terms of the mechanism, and what happens when one occurs (in terms of saving the state of the CPU at the time the trap happened, and the invocation of a trap handler), but differs from an interrupt in that the latter is usually caused by some external event, whereas traps are almost always caused by an internal event.

For example, traps may happen in response to things like an attempt to divide by zero, or an attempt to take some action that it not allowed to a user's process, only to the operating system (e.g. halt the machine).