7Condition::Condition(
Mutex &lock) :
11 pthread_condattr_t attr;
13 res = pthread_condattr_init(&attr);
15 if (
auto err =
Errno{res}; err != Errno::NO_ERROR) {
16 cosmos_throw (
ApiError(
"pthread_condattr_init()", err));
25 res = pthread_condattr_setclock(&attr, to_integral(ClockType::MONOTONIC));
27 if (
auto err =
Errno{res}; err != Errno::NO_ERROR) {
28 cosmos_throw (
ApiError(
"pthread_condattr_setclock()", err));
31 res = ::pthread_cond_init(&m_pcond, &attr);
33 if (
auto err =
Errno{res}; err != Errno::NO_ERROR) {
34 cosmos_throw (
ApiError(
"pthread_cond_init()", err));
37 (void)pthread_condattr_destroy(&attr);