NOVA
Stripped down NOVA kernel for the OSY course
Loading...
Searching...
No Matches
Public Member Functions
|
List of all members
Lock_guard< T > Class Template Reference
Public Member Functions
ALWAYS_INLINE
Lock_guard
(T &l)
Constructor & Destructor Documentation
◆
Lock_guard()
template<typename T>
ALWAYS_INLINE
Lock_guard
< T >
::Lock_guard
(
T &
l
)
inline
31
: _lock (
l
)
32
{
33
_lock.lock();
34
}
Lock_guard
Definition
lock_guard.h:25
◆
~Lock_guard()
template<typename T>
ALWAYS_INLINE
Lock_guard
< T >::~
Lock_guard
(
)
inline
38
{
39
_lock.unlock();
40
}
The documentation for this class was generated from the following file:
include/
lock_guard.h
Generated by
1.14.0