#include <mxmConditionVariableInterface.h>
Inheritance diagram for mxmConditionVariableInterface:
Public Member Functions | |
virtual void | wait ()=0 |
Sleeps on the condition variable until being signalled by another thread
| |
virtual void | signal ()=0 |
Signals one of the threads currently sleeping on the condition variable to resume execution - the associated lock must be held to do this. | |
virtual void | signalAll ()=0 |
Signals all of the threads currently sleeping on the condition variable to resume execution - the associated lock must be held to do this. |
[khe]
Kai Hergenroether