previous | start | next

Should Interrupt Handlers Reentrant?

In Linux, the answer is no!

When an interrupt handler is executing (in interrupt context) in Linux, this interrupt value is blocked on all processors.

All other interrupts are typically enabled.

So an interrupt handler can be interrupted in Linux, but never by the same interrupt value.



previous | start | next