InterruptDone (Windows Embedded CE 6.0)

1/6/2010

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 OEMMain.lib or OEMMain_StaticKITL.lib
Windows Embedded CE Windows CE 2.10 and later

See Also

Reference

Kernel Functions
InterruptInitialize

Concepts

Kernel Mode APIs

Other Resources

Developing a Device Driver
User Mode Driver Framework
OEMInterruptDone