Trap

From Computer History Wiki
(Redirected from Fault)
Jump to: navigation, search

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).