TDME2 1.9.121
Condition.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
5
6#if defined(CPPTHREADS)
7 #include <condition_variable>
8 #include <mutex>
9 using std::condition_variable_any;
10 using std::mutex;
11#else
12 #include <pthread.h>
13#endif
14
15#include <string>
16
19
20using std::string;
21
23
24/**
25* Threading condition variable implementation
26* @author Andreas Drewke
27*/
29public:
30 /**
31 * @brief Public constructor, creates condition variable
32 * @param name string
33 */
34 Condition(const string& name);
35
36 /**
37 * @brief Destructor, removes condition variable
38 */
39 ~Condition();
40
41 /**
42 * @brief wake ups a waiting thread on this condition, associated mutex should protect signal
43 */
44 void signal();
45
46 /**
47 * @brief wake ups all waiting threads on this condition, associated mutex should protect broadcast
48 */
49 void broadcast();
50
51 /**
52 * @brief Blocks current thread until signaled/broadcasted, associated mutex should protect wait
53 */
54 void wait(Mutex &mutex);
55
56private:
57 string name;
58 #if defined(CPPTHREADS)
59 condition_variable_any condition;
60 #else
61 pthread_cond_t pThreadCond;
62 #endif
63};
Threading condition variable implementation.
Definition: Condition.h:28
pthread_cond_t pThreadCond
Definition: Condition.h:61
void broadcast()
wake ups all waiting threads on this condition, associated mutex should protect broadcast
Definition: Condition.cpp:38
void signal()
wake ups a waiting thread on this condition, associated mutex should protect signal
Definition: Condition.cpp:29
~Condition()
Destructor, removes condition variable.
Definition: Condition.cpp:20
void wait(Mutex &mutex)
Blocks current thread until signaled/broadcasted, associated mutex should protect wait.
Definition: Condition.cpp:47
Condition(const string &name)
Public constructor, creates condition variable.
Definition: Condition.cpp:10
Mutex implementation.
Definition: Mutex.h:27