Rebel Fork Framework
|
Operating system mutual exclusion primitive. More...
#include <Urho3D/Core/Mutex.h>
Public Member Functions | |
void | Acquire () |
Acquire the mutex. Block if already acquired. | |
bool | TryAcquire () |
Try to acquire the mutex without locking. Return true if successful. | |
void | Release () |
Release the mutex. | |
Private Attributes | |
MutexType | lock_ |
Underlying mutex object. | |
Operating system mutual exclusion primitive.