2#include <cosmos/error/UsageError.hxx>
3#include <cosmos/private/Initable.hxx>
4#include <cosmos/thread/Mutex.hxx>
11constexpr bool DEBUG_MUTEX =
true;
13constexpr bool DEBUG_MUTEX =
false;
20 MutexAttr() : Initable(InitPrio::MUTEX_ATTR) {}
22 pthread_mutexattr_t* getAttr() {
23 if (!libInitialized()) {
24 cosmos_throw (UsageError(
"libcosmos was not initialized"));
26 return DEBUG_MUTEX ? &m_attr :
nullptr;
31 void libInit()
override {
35 auto res = ::pthread_mutexattr_init(&m_attr);
36 if (
auto err = Errno{res}; err != Errno::NO_ERROR) {
37 cosmos_throw (ApiError(
"pthread_mutexattr_init()", err));
40 res = ::pthread_mutexattr_settype(
41 &m_attr, PTHREAD_MUTEX_ERRORCHECK
44 if (
auto err = Errno{res}; err != Errno::NO_ERROR) {
45 cosmos_throw (ApiError(
"pthread_mutexattr_settype()", err));
49 void libExit()
override {
52 (void)::pthread_mutexattr_destroy(&m_attr);
57 pthread_mutexattr_t m_attr;
65 auto res = ::pthread_mutex_init(&m_pmutex, g_attr.getAttr());
66 if (
auto err =
Errno{res}; err != Errno::NO_ERROR) {
67 cosmos_throw (
ApiError(
"pthread_mutex_init()", err));
Specialized exception type used when system APIs fail.
Mutex()
Create a non-recursive Mutex.
Errno
Strong enum type representing errno error constants.