#include <thread.h>
Inheritance diagram for Conditional:

Public Member Functions | |
| Conditional (const char *id=NULL) | |
| Create an instance of a conditional. | |
| virtual | ~Conditional () |
| Destroy the conditional. | |
| void | signal (bool broadcast) |
| Signal a conditional object and a waiting threads. | |
| bool | wait (timeout_t timer=0, bool locked=false) |
| Wait to be signaled from another thread. | |
Conditional variables may wait for and receive signals to notify when to resume or perform operations. Multiple waiting threads may be woken with a broadcast signal.
|
|
Create an instance of a conditional.
|
|
|
Destroy the conditional.
|
|
|
Signal a conditional object and a waiting threads.
|
|
||||||||||||
|
Wait to be signaled from another thread.
|
1.3.5