libcosmos
Linux C++ System Programming Library
|
A class to represent a pthread condition. More...
#include <Condition.hxx>
Public Types | |
enum class | WaitTimedRes { TIMED_OUT , SIGNALED } |
Strong type to express waitTimed() results. More... | |
Public Member Functions | |
Condition (Mutex &lock) | |
Create a condition coupled with the given lock . | |
void | wait () const |
Wait for the Condition to be signaled. | |
WaitTimedRes | waitTimed (const MonotonicTime ts) const |
Wait for the Condition to be signaled with timeout. | |
void | signal () |
Signal and unblock one waiting thread. | |
void | broadcast () |
Signal and unblock all waiting threads. | |
Mutex & | mutex () |
Protected Attributes | |
pthread_cond_t | m_pcond |
Mutex & | m_lock |
A class to represent a pthread condition.
The current implementation only provides the most basic condition operations. Refer to the POSIX man pages for more information.
A condition allows to efficiently wait for a certain program condition to be reached. A thread typically evaluates some program state, owning a Mutex, and if there is no work to be done it invokes wait() on the Condition which atomically unlocks the Mutex and waits for another thread to signal the condition.
There are some caveats to be considered:
Definition at line 33 of file Condition.hxx.
|
strong |
Strong type to express waitTimed() results.
Definition at line 41 of file Condition.hxx.
|
explicit |
Create a condition coupled with the given lock
.
The given Mutex will be associated with the Condition for the complete lifetime of the object. You need to make sure that lock
is never destroyed before the associated Condition object is destroyed.
Definition at line 7 of file Condition.cxx.
|
inline |
Definition at line 57 of file Condition.hxx.
|
inline |
Signal and unblock all waiting threads.
All threads currently waiting for a signal on the condition will be woken up. Keep in mind that each thread will contend for acquiring the mutex at wakeup and thus a certain serialization will take place until all threads evaluated the new program state and release the mutex again.
Definition at line 124 of file Condition.hxx.
|
inline |
Definition at line 132 of file Condition.hxx.
|
inline |
Signal and unblock one waiting thread.
This call will unblock at most one thread waiting for a signal on the condition. If multiple threads are waiting for a signal then the rest of the thread will not be woken up.
This call will not block the caller. If not thread is currently waiting for a signal then nothing happens.
Definition at line 108 of file Condition.hxx.
|
inline |
Wait for the Condition to be signaled.
The associated Mutex must already be locked at entry, otherwise undefined behaviour is the result.
Upon return the Mutex will again be owned by the caller.
Definition at line 71 of file Condition.hxx.
|
inline |
Wait for the Condition to be signaled with timeout.
This is like wait() but waits at most until the given absolute time has been reached.
Upon return the Mutex will again be owned by the caller, regardless of whether the condition was signaled or a timeout occurred.
Definition at line 89 of file Condition.hxx.
|
protected |
Definition at line 138 of file Condition.hxx.
|
mutableprotected |
Definition at line 137 of file Condition.hxx.