libcosmos
Linux C++ System Programming Library
|
A class to represent a pthread mutex. More...
#include <Mutex.hxx>
Public Member Functions | |
Mutex () | |
Create a non-recursive Mutex. | |
void | lock () const |
void | unlock () const |
Protected Attributes | |
pthread_mutex_t | m_pmutex |
Friends | |
class | Condition |
A class to represent a pthread mutex.
Only the most basic operations are implemented by now. For more details about the semantics refer to man pthread_mutex_init
and man pthread_mutex_destroy
.
cosmos::Mutex::Mutex | ( | ) |
Create a non-recursive Mutex.
Other mutex types are not currently provided.
If the NDEBUG
define is not set (during libcosmos build) then additional error checks are in effect that allow detection of deadlocks etc.
Definition at line 64 of file Mutex.cxx.
|
inline |
|
inline |
|
inline |