Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
3/26/2014
This function stalls the caller on the current processor for a given interval.
Syntax
VOID NdisStallExecution(
UINT MicrosecondsToStall
);
Parameters
- MicrosecondsToStall
[in] Specifies the number of microseconds to delay.
Return Value
None.
Remarks
NdisStallExecution is a processor-dependent function that busy-waits for at least the specified number of microseconds, but not significantly longer.
This function should be called by drivers that must wait for an interval of more than a few instructions but less than 50 microseconds. Drivers that call this routine should minimize the number of microseconds that they specify. If a driver must wait for an interval longer than 50 microseconds, it should call the NdisMSleep function. Note that callers of NdisMSleep run at IRQL < DISPATCH_LEVEL.
Requirements
Header |
ndis.h |
See Also
Reference
NDIS Delay Interface
MiniportInitializeEx
MiniportResetEx
NdisSetTimerObject
NdisMSleep