ExReleasePushLockExclusive - NtDoc

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

void ExReleasePushLockExclusive(
  Lock
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

ExReleasePushLockExclusive macro

Description

Releases a specified push lock for exclusive access owned by the current thread.

Parameters

Lock

Opaque push lock pointer specified in the ExAcquirePushLockExclusive call. This pointer must have been initialized by a previous call to ExInitializePushLock.

Remarks

To acquire a push lock for exclusive access, call ExAcquirePushLockExclusive.

To acquire a push lock for shared access, call ExAcquirePushLockShared.

See also