KeInitializeGuardedMutex - NtDoc

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

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

NtDoc

No description available.

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

KeInitializeGuardedMutex function

Description

The KeInitializeGuardedMutex routine initializes a guarded mutex.

Parameters

Mutex [out]

Pointer to the KGUARDED_MUTEX structure to initialize. The storage must be 4-byte aligned on 32-bit platforms, and 8-byte aligned on 64-bit platforms.

Remarks

Guarded mutexes must be allocated from nonpaged pool.

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

See also

KGUARDED_MUTEX

KeAcquireGuardedMutex