libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
Condition.cxx
1// Cosmos
2#include <cosmos/thread/Condition.hxx>
3#include <cosmos/utils.hxx>
4
5namespace cosmos {
6
7Condition::Condition(Mutex &lock) :
8 m_lock{lock} {
9 int res = -1;
10
11 pthread_condattr_t attr;
12
13 res = pthread_condattr_init(&attr);
14
15 if (auto err = Errno{res}; err != Errno::NO_ERROR) {
16 cosmos_throw (ApiError("pthread_condattr_init()", err));
17 }
18
19 try {
20 /*
21 * we need the monotonic clock for time based wait
22 * operations on the condition, it's the most robust
23 * clock available
24 */
25 res = pthread_condattr_setclock(&attr, to_integral(ClockType::MONOTONIC));
26
27 if (auto err = Errno{res}; err != Errno::NO_ERROR) {
28 cosmos_throw (ApiError("pthread_condattr_setclock()", err));
29 }
30
31 res = ::pthread_cond_init(&m_pcond, &attr);
32
33 if (auto err = Errno{res}; err != Errno::NO_ERROR) {
34 cosmos_throw (ApiError("pthread_cond_init()", err));
35 }
36 } catch(...) {
37 (void)pthread_condattr_destroy(&attr);
38 throw;
39 }
40}
41
42} // end ns
Specialized exception type used when system APIs fail.
Definition ApiError.hxx:18
A class to represent a pthread mutex.
Definition Mutex.hxx:25
Errno
Strong enum type representing errno error constants.
Definition errno.hxx:29