Defines a simple conditional variable class which allows threads to block until shared data changes state
Defines a simple conditional variable class which allows threads to block until shared data changes state. A VCondition must always be associated with a VMutex to avoid the race condition where a thread prepares to wait on a condition variable and another thread signals the condition just before the first thread actually waits on it.
virtual ~VCondition()
int wait(VMutex* mutex, int relativeTimeInMillis = -1)
int uwait(VMutex* mutex, int relativeTimeInMicros = -1)
int signal()
int broadcast()
const vcondition_t* getId()
generated by doc++