![]() |
My Project
|
Mutex for synchronizing multiple threads. More...
#include <Mutex.h>
Public Member Functions | |
Mutex () | |
Constructor. | |
~Mutex () | |
Destructor. | |
void | lock () |
Locks the mutex. More... | |
void | unlock () |
Unlocks the mutex. | |
void lock | ( | ) |
Locks the mutex.
If the mutex is already locked by another thread, this method will block until the other thread unlocks the mutex.