TDME2 1.9.121
Mutex.cpp
Go to the documentation of this file.
2
3#include <errno.h>
4
5#include <tdme/tdme.h>
7
9
10Mutex::Mutex(const string& name) {
11 this->name = name;
12 #if defined(CPPTHREADS)
13 #else
14 auto result = pthread_mutex_init(&pThreadMutex, NULL);
15 PTHREAD_CHECK_ERROR(name, "Could not init mutex", "pthread_mutex_init");
16 #endif
17}
18
20 #if defined(CPPTHREADS)
21 #else
22 auto result = pthread_mutex_destroy(&pThreadMutex);
23 PTHREAD_CHECK_ERROR(name, "Could not destroy mutex", "pthread_mutex_destroy");
24 #endif
25}
26
28 #if defined(CPPTHREADS)
29 return mutex.try_lock();
30 #else
31 auto result = pthread_mutex_trylock(&pThreadMutex);
32 if (result != EBUSY) {
33 PTHREAD_CHECK_ERROR(name, "Could not try lock mutex", "pthread_mutex_trylock");
34 }
35 return result == 0;
36 #endif
37}
38
40 #if defined(CPPTHREADS)
41 mutex.lock();
42 #else
43 auto result = pthread_mutex_lock(&pThreadMutex);
44 PTHREAD_CHECK_ERROR(name, "Could not lock mutex", "pthread_mutex_lock");
45 #endif
46}
47
49 #if defined(CPPTHREADS)
50 mutex.unlock();
51 #else
52 auto result = pthread_mutex_unlock (&pThreadMutex);
53 PTHREAD_CHECK_ERROR(name, "Could not unlock mutex", "pthread_mutex_unlock");
54 #endif
55}
#define PTHREAD_CHECK_ERROR(NAME, MSG, FUNCTION)
Mutex implementation.
Definition: Mutex.h:27
~Mutex()
Destroys the mutex.
Definition: Mutex.cpp:19
void unlock()
Unlocks this mutex.
Definition: Mutex.cpp:48
pthread_mutex_t pThreadMutex
Definition: Mutex.h:62
void lock()
Locks the mutex, additionally mutex locks will block until other locks have been unlocked.
Definition: Mutex.cpp:39
bool tryLock()
Tries to locks the mutex.
Definition: Mutex.cpp:27