10#include <cosmos/thread/Mutex.hxx>
11#include <cosmos/time/types.hxx>
58 const auto destroy_res = ::pthread_cond_destroy(&m_pcond);
60 assert (!destroy_res);
72 auto res = ::pthread_cond_wait(&m_pcond, &(m_lock.m_pmutex));
74 if (
auto err =
Errno{res}; err != Errno::NO_ERROR) {
90 auto res = ::pthread_cond_timedwait(&m_pcond, &(m_lock.m_pmutex), &ts);
93 default: cosmos_throw (
ApiError(
"pthread_cond_timedwait()",
Errno{res}));
return WaitTimedRes::TIMED_OUT;
94 case Errno::NO_ERROR:
return WaitTimedRes::SIGNALED;
95 case Errno::TIMEDOUT:
return WaitTimedRes::TIMED_OUT;
109 auto res = ::pthread_cond_signal(&m_pcond);
111 if (
auto err =
Errno{res}; err != Errno::NO_ERROR) {
112 cosmos_throw (
ApiError(
"pthread_cond_signal()", err));
125 auto res = ::pthread_cond_broadcast(&m_pcond);
127 if (
auto err =
Errno{res}; err != Errno::NO_ERROR) {
128 cosmos_throw (
ApiError(
"pthread_cond_broadcast()", err));
132 Mutex& mutex() {
return m_lock; }
137 mutable pthread_cond_t m_pcond;
Specialized exception type used when system APIs fail.
An aggregate of a Mutex and a Condition coupled together for typical Condition usage.
A class to represent a pthread condition.
void signal()
Signal and unblock one waiting thread.
WaitTimedRes
Strong type to express waitTimed() results.
WaitTimedRes waitTimed(const MonotonicTime ts) const
Wait for the Condition to be signaled with timeout.
void broadcast()
Signal and unblock all waiting threads.
void wait() const
Wait for the Condition to be signaled.
A class to represent a pthread mutex.
A C++ wrapper around the POSIX struct timespec coupled to a specific CLOCK type.
Errno
Strong enum type representing errno error constants.