Lock::ReleaseShared
Defined in:
Releases shared access to a lock.
C4Threads.h
Prototype
void ReleaseShared(void);
Description
The ReleaseShared
function relinquishes shared access to a lock that was previously acquired using the Lock::AcquireShared
function. Each previous call to the Lock::AcquireShared
function must be balanced with a call to the ReleaseShared
function. A lock cannot be acquired with exclusive access until all threads have released shared access to the lock.
See Also