Mutex::Release
Defined in:
Releases ownership of a mutex.
C4Root.h
Prototype
void Release(void);
Description
The Release
function relinquishes ownership of a mutex that was previously acquired by calling the Mutex::Acquire
or Mutex::TryAcquire
function from the same thread. Once the Release
function has been called to balance each previous acquisition of the mutex, the mutex is able to be acquired by other threads.
See Also