#ifndef _NTRTL_H
// winbase:ReleaseSRWLockShared
_Releases_shared_lock_(*SRWLock)
NTSYSAPI
VOID
NTAPI
RtlReleaseSRWLockShared(
_Inout_ PRTL_SRWLOCK SRWLock
);
View code on GitHub// synchapi.h
VOID ReleaseSRWLockShared(
[in, out] PSRWLOCK SRWLock
);
View the official Win32 API referenceNo description available.
Releases a slim reader/writer (SRW) lock that was acquired in shared mode.
SRWLock [in, out]A pointer to the SRW lock.
The SRW lock must be released by the same thread that acquired it. You can use Application Verifier to help verify that your program uses SRW locks correctly (enable Locks checker from Basic group).
Slim Reader/Writer (SRW) Locks
Vertdll APIs available in VBS enclaves