Lock::ReleaseExclusive
Defined in:
Releases exclusive access to a lock.
C4Threads.h
Prototype
void ReleaseExclusive(void);
Description
The ReleaseExclusive
function relinquishes exclusive access to a lock that was previously acquired using the Lock::AcquireExclusive
function. Once the ReleaseExclusive
function has been called, the lock can once again be acquired with shared access.
See Also