Initializes a condition object which is associated with the supplied mutex object.
A destructor is present on this object, but not explicitly documented in the source.
Notifies one waiter.
Notifies all waiters.
Wait until notified.
Suspends the calling thread until a notification occurs or until the supplied time period has elapsed.
Gets the mutex associated with this condition.
This class represents a condition variable as conceived by C.A.R. Hoare. As per Mesa type monitors however, "signal" has been replaced with "notify" to indicate that control is not transferred to the waiter when a notification is sent.