TDME2 1.9.121
Condition.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
5
6using std::string;
9
10Condition::Condition(const string& name) {
11 this->name = name;
12 #if defined(CPPTHREADS)
13
14 #else
15 auto result = pthread_cond_init (&pThreadCond, NULL);
16 PTHREAD_CHECK_ERROR(name, "Could not init condition", "pthread_cond_init");
17 #endif
18}
19
21 #if defined(CPPTHREADS)
22
23 #else
24 auto result = pthread_cond_destroy(&pThreadCond);
25 PTHREAD_CHECK_ERROR(name, "Could not destroy condition", "pthread_cond_destroy");
26 #endif
27}
28
30 #if defined(CPPTHREADS)
31 condition.notify_one();
32 #else
33 auto result = pthread_cond_signal(&pThreadCond);
34 PTHREAD_CHECK_ERROR(name, "Could not signal condition", "pthread_cond_signal");
35 #endif
36}
37
39 #if defined(CPPTHREADS)
40 condition.notify_all();
41 #else
42 auto result = pthread_cond_broadcast(&pThreadCond);
43 PTHREAD_CHECK_ERROR(name, "Could not broadcast condition", "pthread_cond_broadcast");
44 #endif
45}
46
47void Condition::wait(Mutex &mutex) {
48 #if defined(CPPTHREADS)
49 condition.wait(mutex.mutex);
50 #else
51 auto result = pthread_cond_wait(&pThreadCond, &(mutex.pThreadMutex));
52 PTHREAD_CHECK_ERROR(name, "Could not wait on condition", "pthread_cond_wait");
53 #endif
54}
#define PTHREAD_CHECK_ERROR(NAME, MSG, FUNCTION)
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
Mutex implementation.
Definition: Mutex.h:27
pthread_mutex_t pThreadMutex
Definition: Mutex.h:62