Compartilhar via


NdisMSynchronizeWithInterrupt (Compact 2013)

3/26/2014

This function synchronizes execution of a miniport-supplied function with the MiniportISR or the MiniportDisableInterrupt function.

Syntax

BOOLEAN NdisMSynchronizeWithInterrupt(
  PNDIS_MINIPORT_INTERRUPT Interrupt,
  PVOID SynchronizeFunction,
  PVOID SynchronizeContext
);

Parameters

  • Interrupt
    [in] Pointer to the caller-supplied storage for the interrupt object initialized with the NdisMRegisterInterrupt function.
  • SynchronizeContext
    [in] Pointer to a miniport-determined context area to be passed to the MiniportSynchronizeISR function when it is called.

Return Value

Returns the Boolean value returned by MiniportSynchronizeISR.

Remarks

The value returned by MiniportSynchronizeISR is also returned by this function. This propagated value can be used to provide a status to the caller.

Requirements

Header

ndis.h

Library

ndis.dll

See Also

Reference

NDIS 5.x Legacy Functions
NdisMDeregisterInterrupt
MiniportISR
MiniportDisableInterrupt
MiniportSynchronizeISR
NdisMRegisterInterrupt