KeReadStateMutex - NtDoc

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

LONG KeReadStateMutex(
  [in] PRKMUTEX Mutex
);

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

KeReadStateMutex function

Description

The KeReadStateMutex routine returns the current state, signaled or not-signaled, of the specified mutex object.

Parameters

Mutex [in]

Pointer to an initialized mutex object for which the caller provides the storage.

Return value

If the return value is 1, the state of the mutex object is signaled.

Remarks

This routine provides an efficient way to poll the signal state of a mutex. KeReadStateMutex reads the state of the mutex without synchronizing its access to the mutex. Do not assume that accesses of a mutex state by KeReadStateMutex are mutually exclusive of accesses by routines, such as KeReleaseMutex and KeWaitForSingleObject, that do synchronize their access to the mutex state.

For more information about mutex objects, see Mutex Objects.

See also

ExInitializeFastMutex

KeInitializeMutex

KeReleaseMutex

KeWaitForSingleObject