TDME2 1.9.121
Mutex.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
5
6#if defined(CPPTHREADS)
7 #include <mutex>
8 using std::mutex;
9#else
10 #include <pthread.h>
11#endif
12
13#include <string>
14
16
17using std::string;
18
20
21/**
22 * Mutex implementation.
23 * Mutexes are used to ensure that only one process can run a critical section,
24 * which is e.g. modifying shared data between thread.
25 * @author Andreas Drewke
26 */
28 friend class Condition;
29
30public:
31 /**
32 * @brief Public constructor
33 * @param name name
34 */
35 Mutex(const string& name);
36
37 /**
38 * @brief Destroys the mutex
39 */
40 ~Mutex();
41
42 /**
43 * @brief Tries to locks the mutex
44 */
45 bool tryLock();
46
47 /**
48 * @brief Locks the mutex, additionally mutex locks will block until other locks have been unlocked.
49 */
50 void lock();
51
52 /**
53 * @brief Unlocks this mutex
54 */
55 void unlock();
56
57private:
58 string name;
59 #if defined(CPPTHREADS)
60 mutex mutex;
61 #else
62 pthread_mutex_t pThreadMutex;
63 #endif
64
65};
Threading condition variable implementation.
Definition: Condition.h:28
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
Mutex(const string &name)
Public constructor.
Definition: Mutex.cpp:10
bool tryLock()
Tries to locks the mutex.
Definition: Mutex.cpp:27