TDME2
1.9.121
src
tdme
os
threading
Barrier.cpp
Go to the documentation of this file.
1
#include <
tdme/os/threading/Barrier.h
>
2
3
#include <
tdme/tdme.h
>
4
#include <
tdme/os/threading/AtomicOperations.h
>
5
#include <
tdme/os/threading/Mutex.h
>
6
7
using
std::string;
8
using
tdme::os::threading::AtomicOperations
;
9
using
tdme::os::threading::Barrier
;
10
using
tdme::os::threading::Mutex
;
11
12
Barrier::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
17
Barrier::~Barrier
() {
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
31
bool
Barrier::wait
() {
32
m
.
lock
();
33
34
// one thread entered the barrier
35
AtomicOperations::increment
(
entered
);
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
44
AtomicOperations::increment
(
exited
);
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
56
AtomicOperations::increment
(
exited
);
57
58
//
59
return
false
;
60
}
61
}
AtomicOperations.h
Barrier.h
Mutex.h
tdme::os::threading::AtomicOperations
Atomic operations.
Definition:
AtomicOperations.h:15
tdme::os::threading::AtomicOperations::increment
static uint32_t increment(volatile uint32_t &value, uint32_t byValue=1)
Increment uint32 value and return its value.
Definition:
AtomicOperations.h:24
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::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::broadcast
void broadcast()
wake ups all waiting threads on this condition, associated mutex should protect broadcast
Definition:
Condition.cpp:38
tdme::os::threading::Condition::wait
void wait(Mutex &mutex)
Blocks current thread until signaled/broadcasted, associated mutex should protect wait.
Definition:
Condition.cpp:47
tdme::os::threading::Mutex
Mutex implementation.
Definition:
Mutex.h:27
tdme::os::threading::Mutex::unlock
void unlock()
Unlocks this mutex.
Definition:
Mutex.cpp:48
tdme::os::threading::Mutex::lock
void lock()
Locks the mutex, additionally mutex locks will block until other locks have been unlocked.
Definition:
Mutex.cpp:39
tdme.h
Generated by
1.9.3