TDME2 1.9.121
|
#include <tdme/os/threading/Mutex.h>
Public Member Functions | |
Mutex (const string &name) | |
Public constructor. More... | |
~Mutex () | |
Destroys the mutex. More... | |
bool | tryLock () |
Tries to locks the mutex. More... | |
void | lock () |
Locks the mutex, additionally mutex locks will block until other locks have been unlocked. More... | |
void | unlock () |
Unlocks this mutex. More... | |
Private Attributes | |
string | name |
pthread_mutex_t | pThreadMutex |
Friends | |
class | Condition |
Mutex implementation.
Mutexes are used to ensure that only one process can run a critical section, which is e.g. modifying shared data between thread.
Mutex | ( | const string & | name | ) |
void lock | ( | ) |