libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::MutexGuard Struct Reference

A mutex guard object that locks a Mutex for the lifetime of the guard object. More...

#include <Mutex.hxx>

+ Inheritance diagram for cosmos::MutexGuard:

Public Member Functions

 MutexGuard (const Mutex &m)
 
- Public Member Functions inherited from cosmos::ResourceGuard< const Mutex & >
 ResourceGuard (const ResourceGuard &)=delete
 
 ResourceGuard (const Mutex &r, std::function< CleanFunc > cleaner)
 
ResourceGuardoperator= (const ResourceGuard &)=delete
 
void disarm ()
 

Additional Inherited Members

- Public Types inherited from cosmos::ResourceGuard< const Mutex & >
using CleanFunc
 
- Protected Attributes inherited from cosmos::ResourceGuard< const Mutex & >
bool m_disarmed
 
const Mutexm_res
 
std::function< CleanFunc > m_cleaner
 

Detailed Description

A mutex guard object that locks a Mutex for the lifetime of the guard object.

Definition at line 75 of file Mutex.hxx.

Constructor & Destructor Documentation

◆ MutexGuard()

cosmos::MutexGuard::MutexGuard ( const Mutex & m)
inlineexplicit

Definition at line 78 of file Mutex.hxx.

78 :
79 ResourceGuard{m, [](const Mutex &_m) { _m.unlock(); }} {
80 m.lock();
81 }

The documentation for this struct was generated from the following file: