-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.cc
55 lines (44 loc) · 1.13 KB
/
main.cc
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
#include "countdownlatch.hpp"
#include <iostream>
#include <thread>
struct Job
{
const std::string name;
std::string product{"not worked"};
std::thread action{};
};
void countDownLatchTest()
{
Job jobs[]{{"Annika"}, {"Buru"}, {"Chuck"}};
CountDownLatch work_done{std::size(jobs)};
CountDownLatch start_clean_up{1};
auto work = [&](Job &my_job) {
my_job.product = my_job.name + " worked";
work_done.countDown();
start_clean_up.wait();
my_job.product = my_job.name + " cleaned";
};
std::cout << "Work is starting... ";
for (auto &job : jobs) {
job.action = std::thread{work, std::ref(job)};
}
work_done.wait();
std::cout << "done:\n";
for (auto const &job : jobs) {
std::cout << " " << job.product << '\n';
}
std::cout << "Workers are cleaning up... ";
start_clean_up.countDown();
for (auto &job : jobs) {
job.action.join();
}
std::cout << "done:\n";
for (auto const &job : jobs) {
std::cout << " " << job.product << '\n';
}
}
auto main() -> int
{
countDownLatchTest();
return 0;
}