10#include <cosmos/dso_export.h>
11#include <cosmos/error/ApiError.hxx>
12#include <cosmos/utils.hxx>
43 const auto destroy_res = ::pthread_mutex_destroy(&m_pmutex);
45 assert (!destroy_res);
50 const auto lock_res = ::pthread_mutex_lock(&m_pmutex);
53 cosmos_throw (
ApiError(
"pthread_mutex_lock()",
Errno{lock_res}));
58 const int unlock_res = ::pthread_mutex_unlock(&m_pmutex);
61 cosmos_throw (
ApiError(
"pthread_mutex_unlock()",
Errno{unlock_res}));
68 mutable pthread_mutex_t m_pmutex;
Specialized exception type used when system APIs fail.
A class to represent a pthread condition.
A class to represent a pthread mutex.
Helper class to guard arbitrary resources.
Errno
Strong enum type representing errno error constants.
A mutex guard object that locks a Mutex for the lifetime of the guard object.
A reversed mutex guard object that unlocks a Mutex for the lifetime of the guard object.