GCC Code Coverage Report


Directory: ./
File: include/shared_memory/lock.hpp
Date: 2022-06-30 06:29:57
Exec Total Coverage
Lines: 1 1 100.0%
Branches: 0 0 -%

Line Branch Exec Source
1 // Copyright 2019 Max Planck Gesellschaft and New York University
2 // Authors: Vincent Berenz, Maximilien Naveau
3
4 #pragma once
5
6 #include <boost/interprocess/sync/scoped_lock.hpp>
7 #include "shared_memory/mutex.hpp"
8
9 namespace shared_memory
10 {
11 typedef boost::interprocess::scoped_lock<SHMMutex> SHMScopeLock;
12
13 // forward declaration for using the
14 // friend keyword below
15 class ConditionVariable;
16
17 /**
18 * @brief A scope lock object for locking a
19 * shared memory mutex, to use for example with
20 * a shared memory condition variable.
21 * The scope is unlocked on destruction.
22 */
23 20 class Lock
24 {
25 public:
26 /**
27 * @brief lock the mutex
28 */
29 Lock(Mutex &mutex);
30
31 private:
32 // condition variable will access
33 // SHMScopeLock directly to lock it
34 friend ConditionVariable;
35 SHMScopeLock lock_;
36 };
37
38 } // namespace shared_memory
39