InterruptDone
Other versions of this page are also available for the following:
8/28/2008
This function signals to the kernel that interrupt processing has been completed. This function is callable from kernel-mode drivers and user-mode drivers.
Syntax
VOID InterruptDone(
DWORD idInt
);
Parameters
- idInt
[in] Identifier of an interrupt.
Return Value
None.
Remarks
A device driver calls InterruptDone when it has completed the processing for an interrupt and is ready for another interrupt.
InterruptDone must be called to unmask the interrupt before the driver waits for the registered event to be signaled again. The kernel calls through to the OEMInterruptDone function.
Requirements
Header | pkfuncs.h |
Library | coredll.lib |
Windows Embedded CE | Windows CE 2.10 and later |
See Also
Reference
Kernel Functions
InterruptInitialize
Concepts
Other Resources
Developing a Device Driver
User Mode Driver Framework
OEMInterruptDone