GCC Code Coverage Report


Directory: ./
File: demos/locked_cond_var_ping.cpp
Date: 2022-06-30 06:29:57
Exec Total Coverage
Lines: 0 27 0.0%
Branches: 0 54 0.0%

Line Branch Exec Source
1 #include <iostream>
2 #include <thread>
3 #include "shared_memory/locked_condition_variable.hpp"
4 #include "shared_memory/shared_memory.hpp"
5
6 #include <signal.h>
7 #include <stdlib.h>
8 #include <time.h>
9 #include <unistd.h>
10 #include <iostream>
11
12 static bool RUNNING = true;
13
14 void stop(int)
15 {
16 RUNNING = false;
17 }
18
19 void execute()
20 {
21 shared_memory::LockedConditionVariable::clean("main_memory");
22
23 shared_memory::LockedConditionVariable cv("main_memory");
24
25 int count = 0;
26 shared_memory::set<int>("main_memory", "count", count);
27
28 bool started = false;
29
30 cv.lock_scope();
31
32 while (RUNNING)
33 {
34 if (!started)
35 {
36 std::cout << "waiting for pong\n";
37 started = true;
38 }
39
40 cv.wait();
41
42 shared_memory::get<int>("main_memory", "count", count);
43 count++;
44 shared_memory::set<int>("main_memory", "count", count);
45
46 std::cout << "\t\tping " << count << "\n";
47
48 usleep(2000);
49
50 cv.notify_one();
51 }
52
53 cv.unlock_scope();
54 }
55
56 int main()
57 {
58 // cleaning and exit on ctrl+c
59 struct sigaction cleaning;
60 cleaning.sa_handler = stop;
61 sigemptyset(&cleaning.sa_mask);
62 cleaning.sa_flags = 0;
63 sigaction(SIGINT, &cleaning, nullptr);
64
65 execute();
66 }
67