This is an excerpt from pthread_cond_wait man page Some implementations, particularly on a multi-processor, may sometimes cause multiple threads to wake up when the condition variable is signaled simultaneously on different processors.
In general, whenever a condition wait returns, the thread has to re-evaluate the predicate associated with the condition wait to determine whether it can safely proceed, should wait again, or should declare a timeout. My Question: here what is the meaning of predicate?Does it mean that I need to create one more variable apart from the conditional variable provided in pthread_cond_wait or does it referring to the same variable which has been provided in pthread_cond_wait