TDME2 1.9.121
Barrier.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
5
6#include <pthread.h>
7#include <string>
8
11
12using std::string;
13
16
17/**
18 * Barrier implementation.
19 * @author Andreas Drewke
20 */
22public:
23 /**
24 * @brief Public constructor
25 * @param name name
26 * @param count Number of threads that need to "wait" on barrier to complete barrier
27 */
28 Barrier(const string& name, const unsigned int count);
29
30 /**
31 * @brief Destroys the barrier
32 */
33 ~Barrier();
34
35 /**
36 * @brief Waits on barrier
37 * @return bool if caller thread is selected for updating shared data
38 */
39 bool wait();
40
41private:
42 string name;
43 unsigned int count;
44 volatile unsigned int entered;
45 volatile unsigned int exited;
48};
Barrier implementation.
Definition: Barrier.h:21
~Barrier()
Destroys the barrier.
Definition: Barrier.cpp:17
Barrier(const string &name, const unsigned int count)
Public constructor.
Definition: Barrier.cpp:12
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
Threading condition variable implementation.
Definition: Condition.h:28
Mutex implementation.
Definition: Mutex.h:27