GCC Code Coverage Report


Directory: ./
File: benchmarks/stress_get_api.cpp
Date: 2022-06-30 06:29:57
Exec Total Coverage
Lines: 0 22 0.0%
Branches: 0 32 0.0%

Line Branch Exec Source
1 /**
2 * @file stress_get_api.cpp
3 * @author Vincent Berenz
4 * @license License BSD-3-Clause
5 * @copyright Copyright (c) 2019, New York University and Max Planck
6 * Gesellschaft.
7 * @date 2019-05-22
8 *
9 * @brief Benchmark on the get method of the API.
10 */
11
12 #include <shared_memory/benchmarks/benchmark_common.hh>
13 #include "shared_memory/shared_memory.hpp"
14
15 void cleaning_memory(int)
16 {
17 RUNNING = false;
18 shared_memory::SharedMemorySegment& segment =
19 shared_memory::get_segment(SHM_NAME);
20 segment.destroy_mutex();
21 }
22
23 int main()
24 {
25 // cleaning on ctrl+c
26 struct sigaction cleaning;
27 cleaning.sa_handler = cleaning_memory;
28 sigemptyset(&cleaning.sa_mask);
29 cleaning.sa_flags = 0;
30 sigaction(SIGINT, &cleaning, nullptr);
31
32 shared_memory::clear_shared_memory(SHM_NAME);
33 shared_memory::get_segment_mutex(SHM_NAME).unlock();
34 shared_memory::set(SHM_NAME, SHM_OBJECT_NAME, DATA);
35
36 int count = 0;
37 RUNNING = true;
38 MeasureTime meas_time;
39 while (RUNNING && count < MAX_NUNMBER_OF_ITERATION)
40 {
41 shared_memory::get(SHM_NAME, SHM_OBJECT_NAME, DATA);
42
43 ++count;
44 if (count % NUMBER_OR_MEASURED_ITERATIONS == 0)
45 {
46 meas_time.update();
47 std::cout << meas_time << " | " << DATA[0] << std::endl;
48 }
49 }
50 return 0;
51 }
52