Jump to user comments
Interrupts may be caused by both
hardware (I/O, timer,
In general the computer responds to an interrupt by storing
the information about the current state of the running
program; storing information to identify the source of the
This is usually a
kernel level privileged process that can
discover the precise cause of the interrupt (e.g. if several
devices share one interrupt) and what must be done to keep
operating system tables (such as the process table) updated.
This first-level handler may then call another handler,
e.g. one associated with the particular device which generated
the interrupt.
because the
OS and
BIOS routines are both called using the
so often have to bypass the operating system (going directly
to a BIOS interrupt) to get reasonable performance.
(1995-02-07)