// ntddk.h
VOID KeLeaveCriticalRegion();
View the official Windows Driver Kit DDI reference
// wdm.h
VOID KeLeaveCriticalRegion();
View the official Windows Driver Kit DDI reference
No description available.
The KeLeaveCriticalRegion routine reenables the delivery of normal kernel-mode APCs that were disabled by a preceding call to KeEnterCriticalRegion.
Highest-level drivers can call this routine while running in the context of the thread that requested the current I/O operation.
The KeLeaveCriticalRegion routine reenables the delivery of normal kernel-mode APCs that were disabled by a preceding call to KeEnterCriticalRegion.
Highest-level drivers can call this routine while running in the context of the thread that requested the current I/O operation.