TDME2
1.9.121
src
tdme
os
threading
Barrier.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <
tdme/tdme.h
>
4
#include <
tdme/os/threading/fwd-tdme.h
>
5
6
#include <pthread.h>
7
#include <string>
8
9
#include <
tdme/os/threading/Condition.h
>
10
#include <
tdme/os/threading/Mutex.h
>
11
12
using
std::string;
13
14
using
tdme::os::threading::Condition
;
15
using
tdme::os::threading::Mutex
;
16
17
/**
18
* Barrier implementation.
19
* @author Andreas Drewke
20
*/
21
class
tdme::os::threading::Barrier
{
22
public
:
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
41
private
:
42
string
name
;
43
unsigned
int
count
;
44
volatile
unsigned
int
entered
;
45
volatile
unsigned
int
exited
;
46
Mutex
m
;
47
Condition
c
;
48
};
Condition.h
Mutex.h
tdme::os::threading::Barrier
Barrier implementation.
Definition:
Barrier.h:21
tdme::os::threading::Barrier::~Barrier
~Barrier()
Destroys the barrier.
Definition:
Barrier.cpp:17
tdme::os::threading::Barrier::count
unsigned int count
Definition:
Barrier.h:43
tdme::os::threading::Barrier::c
Condition c
Definition:
Barrier.h:47
tdme::os::threading::Barrier::Barrier
Barrier(const string &name, const unsigned int count)
Public constructor.
Definition:
Barrier.cpp:12
tdme::os::threading::Barrier::name
string name
Definition:
Barrier.h:42
tdme::os::threading::Barrier::m
Mutex m
Definition:
Barrier.h:46
tdme::os::threading::Barrier::exited
volatile unsigned int exited
Definition:
Barrier.h:45
tdme::os::threading::Barrier::wait
bool wait()
Waits on barrier.
Definition:
Barrier.cpp:31
tdme::os::threading::Barrier::entered
volatile unsigned int entered
Definition:
Barrier.h:44
tdme::os::threading::Condition
Threading condition variable implementation.
Definition:
Condition.h:28
tdme::os::threading::Mutex
Mutex implementation.
Definition:
Mutex.h:27
fwd-tdme.h
tdme.h
Generated by
1.9.3