10Condition::Condition(
const string& name) {
12 #if defined(CPPTHREADS)
15 auto result = pthread_cond_init (&
pThreadCond, NULL);
21 #if defined(CPPTHREADS)
30 #if defined(CPPTHREADS)
31 condition.notify_one();
39 #if defined(CPPTHREADS)
40 condition.notify_all();
48 #if defined(CPPTHREADS)
49 condition.wait(mutex.mutex);
#define PTHREAD_CHECK_ERROR(NAME, MSG, FUNCTION)
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.
pthread_mutex_t pThreadMutex