TDME2 1.9.121
Barrier.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
6
7using std::string;
11
12Barrier::Barrier(const string& name, const unsigned int count) :
13 name(name), count(count), entered(0), exited(0), m("barrier_mutex"), c("barrier_condition") {
14 //
15}
16
18 // wait until all threads entered the barrier
19 m.lock();
20 while (entered < count) {
21 c.wait(m);
22 }
23 m.unlock();
24
25 // spin until all exited
26 while (exited < count) {
27 //
28 }
29}
30
32 m.lock();
33
34 // one thread entered the barrier
36
37 // did we reach barrier?
38 if (entered == count) {
39 // broadcast all threads waiting on condition
40 c.broadcast();
41 m.unlock();
42
43 // notify exited thread
45
46 // exit
47 return true;
48 } else {
49 // wait until barrier is reached
50 while (entered < count) {
51 c.wait(m);
52 }
53 m.unlock();
54
55 // notify exited thread
57
58 //
59 return false;
60 }
61}
static uint32_t increment(volatile uint32_t &value, uint32_t byValue=1)
Increment uint32 value and return its value.
Barrier implementation.
Definition: Barrier.h:21
~Barrier()
Destroys the barrier.
Definition: Barrier.cpp:17
volatile unsigned int exited
Definition: Barrier.h:45
bool wait()
Waits on barrier.
Definition: Barrier.cpp:31
volatile unsigned int entered
Definition: Barrier.h:44
void broadcast()
wake ups all waiting threads on this condition, associated mutex should protect broadcast
Definition: Condition.cpp:38
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
void unlock()
Unlocks this mutex.
Definition: Mutex.cpp:48
void lock()
Locks the mutex, additionally mutex locks will block until other locks have been unlocked.
Definition: Mutex.cpp:39