C4 Engine
C4 Engine API Documentation

Mutex::Release

Defined in:  C4Root.h
Releases ownership of a mutex.
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

Mutex::Acquire

Mutex::TryAcquire