KeReleaseGuardedMutex - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdm.h

VOID KeReleaseGuardedMutex(
  [in, out] PKGUARDED_MUTEX Mutex
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdm-kereleaseguardedmutex)

KeReleaseGuardedMutex function

Description

The KeReleaseGuardedMutex routine releases a guarded mutex acquired with KeAcquireGuardedMutex or KeTryToAcquireGuardedMutex.

Parameters

Mutex [in, out]

Pointer to the KGUARDED_MUTEX structure for the guarded mutex.

Remarks

KeReleaseGuardedMutex implicitly exits the guarded region entered by KeAcquireGuardedMutex and KeTryToAcquireGuardedMutex.

For more information about guarded mutexes, see Fast Mutexes and Guarded Mutexes.

See also

KeAcquireGuardedMutex