Next | Prev | Up | Top | Contents | Index

Components of Interrupt Response Time

The total interrupt response time includes these sequential parts:

Hardware latencyThe time required to make a CPU respond to an interrupt signal.
Software latencyThe time to set aside other work and enter the device driver code.
Device service timeThe time the device driver spends processing the interrupt, which must be minimal.
Dispatch cycle timeThe time to choose the next user process to run, and to return to its code.

The parts are diagrammed in Figure 6-1 and discussed in the following topics.

Figure 6-1 : Components of Interrupt Response Time


Next | Prev | Up | Top | Contents | Index