Jump to content

Inter-processor interrupt

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Furrykef (talk | contribs) at 22:36, 7 June 2009. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

An inter-processor interrupt (IPI) is a special type of interrupt by which one processor may interrupt another processor in a multiprocessor system. IPIs are typically used to implement a cache coherency synchronization point.

In a Windows based multiprocessor system, a processor may interrupt another processor for the following reasons:

1. Queue a DISPATCH_LEVEL interrupt to schedule a particular thread for execution.
2. Updating the processor's translation look-aside buffers cache.
3. System shutdown.
4. System crash.

In windows, Whis has IRQL as 29.


In x86 based systems, an IPI synchronizes the cache and Memory Management Unit (MMU) between processors.

See also