7 #include <condition_variable>
9 using std::condition_variable_any;
58 #if defined(CPPTHREADS)
59 condition_variable_any condition;
Threading condition variable implementation.
pthread_cond_t pThreadCond
void broadcast()
wake ups all waiting threads on this condition, associated mutex should protect broadcast
void signal()
wake ups a waiting thread on this condition, associated mutex should protect signal
~Condition()
Destructor, removes condition variable.
void wait(Mutex &mutex)
Blocks current thread until signaled/broadcasted, associated mutex should protect wait.
Condition(const string &name)
Public constructor, creates condition variable.