27 #ifndef CPP_PTHREADS_CONDITION_H_
28 #define CPP_PTHREADS_CONDITION_H_
71 #endif // CONDITION_H_
int broadcast()
signals all threads waiting on the condition
int init()
calls initializes a condition variable with default attributes
Attributes object for type Base.
int destroy()
destroys a condition variable
int wait(Mutex &mutex)
called by a thread that wishes to wait on this condition
Allows multiple threads to wait until a condition is satisfied.
int signal()
signals one thread waiting on the condition