GCC Code Coverage Report


Directory: ./
File: benchmarks/stress_get_raw_boost_inefficient.cpp
Date: 2022-06-30 06:29:57
Exec Total Coverage
Lines: 0 25 0.0%
Branches: 0 36 0.0%

Line Branch Exec Source
1 /**
2 * @file stress_get_raw_boost_inefficient.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 Use the raw boost API in order to compare the efficiency of the new
10 * API compare to the standard boost API
11 */
12 #include <boost/interprocess/managed_shared_memory.hpp>
13 #include <boost/interprocess/sync/named_mutex.hpp>
14 #include "shared_memory/benchmarks/benchmark_common.hh"
15
16 void cleaning_memory(int)
17 {
18 RUNNING = false;
19 boost::interprocess::named_mutex::remove(SHM_NAME.c_str());
20 }
21
22 int main()
23 {
24 boost::interprocess::named_mutex::remove(SHM_NAME.c_str());
25
26 // exiting on ctrl+c
27 struct sigaction exiting;
28 exiting.sa_handler = cleaning_memory;
29 sigemptyset(&exiting.sa_mask);
30 exiting.sa_flags = 0;
31 sigaction(SIGINT, &exiting, nullptr);
32
33 int count = 0;
34 RUNNING = true;
35 MeasureTime meas_time;
36 while (RUNNING && count < MAX_NUNMBER_OF_ITERATION)
37 {
38 boost::interprocess::managed_shared_memory segment{
39 boost::interprocess::open_or_create,
40 SHM_NAME.c_str(),
41 SHARED_MEMORY_SIZE};
42
43 boost::interprocess::named_mutex mutex{
44 boost::interprocess::open_or_create, SHM_OBJECT_NAME.c_str()};
45
46 mutex.lock();
47 std::pair<double*, std::size_t> object =
48 segment.find<double>(SHM_OBJECT_NAME.c_str());
49 for (size_t i = 0; i < object.second; i++)
50 {
51 DATA[i] = (object.first)[i];
52 }
53 mutex.unlock();
54
55 ++count;
56 if (count % NUMBER_OR_MEASURED_ITERATIONS == 0)
57 {
58 meas_time.update();
59 std::cout << meas_time << std::endl;
60 }
61 }
62 return 0;
63 }
64