// ntifs.h
NTHALAPI VOID KeStallExecutionProcessor(
[in] ULONG MicroSeconds
);
View the official Windows Driver Kit DDI reference// wdm.h
NTHALAPI VOID KeStallExecutionProcessor(
[in] ULONG MicroSeconds
);
View the official Windows Driver Kit DDI referenceNo description available.
The KeStallExecutionProcessor routine stalls the caller on the current processor for a specified time interval.
MicroSeconds [in]Specifies the number of microseconds to stall.
None
KeStallExecutionProcessor is a processor-dependent routine that busy-waits for at least the specified number of microseconds, but not significantly longer.
This routine is for use by device drivers and other software that must wait for an interval of less than a clock tick but more than for a few instructions. If you use this routine you must minimize the stall interval, typically to less than 50 microseconds. If a driver must wait for a longer interval, you should use a different synchronization technique.
The KeStallExecutionProcessor routine stalls the caller on the current processor for a specified time interval.
MicroSeconds [in]Specifies the number of microseconds to stall.
None
KeStallExecutionProcessor is a processor-dependent routine that busy-waits for at least the specified number of microseconds, but not significantly longer.
This routine is for use by device drivers and other software that must wait for an interval of less than a clock tick but more than for a few instructions. If you use this routine you must minimize the stall interval, typically to less than 50 microseconds. If a driver must wait for a longer interval, you should use a different synchronization technique.