#include <wefts_os_pthread.h>
Inheritance diagram for Wefts::OSConditionPthread:
This is basically a wrapper for pthread.
Public Member Functions | |
OSConditionPthread () throw ( InitError ) | |
~OSConditionPthread () | |
void | signal () |
void | signalOne () |
bool | wait (OSMutexBase &mtx, CleanupItem &guard) |
Waiting for a condition (giving off an already held mutex. | |
bool | timedWait (OSMutexBase &mtx, long seconds, long nanoseconds, CleanupItem &guard) |
Timed wait. | |
Private Attributes | |
pthread_cond_t | m_cond |
|
|
|
|
|
Implements Wefts::OSConditionBase. |
|
Implements Wefts::OSConditionBase. |
|
Timed wait.
Implements Wefts::OSConditionBase. |
|
Waiting for a condition (giving off an already held mutex.
Implements Wefts::OSConditionBase. |
|
|