forked from andreimaximov/uthread
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcondition_variable.cpp
87 lines (71 loc) · 1.49 KB
/
condition_variable.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#include <uthread/gtest.hpp>
#include <uthread/uthread.hpp>
namespace uthread {
TEST(ConditionVariableTest, WakeOne) {
int x = 0;
Mutex mutex;
ConditionVariable cv;
Executor exe;
for (int i = 0; i < 100; i++) {
exe.add([&]() {
Lock guard(&mutex);
ASSERT_LT(x, 100);
x++;
cv.sleep(&guard);
x++;
});
}
exe.add([&]() {
// Wait for all threads to sleep..
while (x != 100) {
Executor::get()->yield();
}
// Now let's make sure the threads stay asleep...
for (int i = 0; i < 100; i++) {
ASSERT_EQ(x, 100);
Executor::get()->yield();
}
// Wake one at a time...
for (int i = 0; i < 100; i++) {
cv.wake_one();
Executor::get()->yield();
ASSERT_EQ(x, 101 + i);
}
});
exe.run();
ASSERT_EQ(x, 200);
}
TEST(ConditionVariableTest, WakeAll) {
int x = 0;
Mutex mutex;
ConditionVariable cv;
Executor exe;
for (int i = 0; i < 100; i++) {
exe.add([&]() {
Lock guard(&mutex);
ASSERT_LT(x, 100);
x++;
cv.sleep(&guard);
x++;
});
}
exe.add([&]() {
// Wait for all threads to sleep..
while (x != 100) {
Executor::get()->yield();
}
// Now let's make sure the threads stay asleep...
for (int i = 0; i < 100; i++) {
ASSERT_EQ(x, 100);
Executor::get()->yield();
}
// Wake as a group...
cv.wake_all();
while (x != 200) {
Executor::get()->yield();
}
});
exe.run();
ASSERT_EQ(x, 200);
}
}