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

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

#include <Mutex.hxx>

+ Inheritance diagram for cosmos::MutexReverseGuard:

Public Member Functions

 MutexReverseGuard (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 reversed mutex guard object that unlocks a Mutex for the lifetime of the guard object.

Definition at line 85 of file Mutex.hxx.

Constructor & Destructor Documentation

◆ MutexReverseGuard()

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

Definition at line 88 of file Mutex.hxx.

88 :
89 ResourceGuard{m, [](const Mutex &_m) { _m.lock(); }} {
90 m.unlock();
91 }

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