ExReleasePushLockShared - NtDoc

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

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

NtDoc

No description available.

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

ExReleasePushLockShared macro

Description

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

Parameters

Lock

Opaque push lock pointer specified in the ExAcquirePushLockShared 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