10Mutex::Mutex(
const string& name) {
12 #if defined(CPPTHREADS)
20 #if defined(CPPTHREADS)
28 #if defined(CPPTHREADS)
29 return mutex.try_lock();
32 if (result != EBUSY) {
40 #if defined(CPPTHREADS)
49 #if defined(CPPTHREADS)
#define PTHREAD_CHECK_ERROR(NAME, MSG, FUNCTION)
~Mutex()
Destroys the mutex.
void unlock()
Unlocks this mutex.
pthread_mutex_t pThreadMutex
void lock()
Locks the mutex, additionally mutex locks will block until other locks have been unlocked.
bool tryLock()
Tries to locks the mutex.