56e97255ed4dee2f31b7100264a4113ea3218463
David Blume Added a routine to cause a...

David Blume authored 7 years ago

1) #pragma once
David Blume Experiment with a manager/w...

David Blume authored 8 years ago

2) 
3) #include <mutex>
4) #include <condition_variable>
5) #include <thread>
6) 
dblume Remove declaration tags. Be...

dblume authored 2 years ago

7) struct Manager
8) {
9)     Manager();
10)     ~Manager();
David Blume Experiment with a manager/w...

David Blume authored 8 years ago

11) 
dblume Remove declaration tags. Be...

dblume authored 2 years ago

12)     void WriteReport();
13)     void DeployWorker();
14) 
dblume Add .clang-format

dblume authored 9 months ago

15)     //  void work(std::unique_lock<x>);
David Blume Experiment with a manager/w...

David Blume authored 8 years ago

16) 
17)     bool abort_reporting_;
18)     std::mutex report_lock_;
19) 
20)     std::condition_variable report_condition_;
21)     std::thread report_thread_;
dblume Remove declaration tags. Be...

dblume authored 2 years ago

22)     int data_to_protect_;