|
ChibiOS/RT 7.0.5
|
Condition Variables code. More...
#include "ch.h"Go to the source code of this file.
Functions | |
| void | chCondObjectInit (condition_variable_t *cp) |
Initializes s condition_variable_t structure. | |
| void | chCondSignal (condition_variable_t *cp) |
| Signals one thread that is waiting on the condition variable. | |
| void | chCondSignalI (condition_variable_t *cp) |
| Signals one thread that is waiting on the condition variable. | |
| void | chCondBroadcast (condition_variable_t *cp) |
| Signals all threads that are waiting on the condition variable. | |
| void | chCondBroadcastI (condition_variable_t *cp) |
| Signals all threads that are waiting on the condition variable. | |
| msg_t | chCondWait (condition_variable_t *cp) |
| Waits on the condition variable releasing the mutex lock. | |
| msg_t | chCondWaitS (condition_variable_t *cp) |
| Waits on the condition variable releasing the mutex lock. | |
| msg_t | chCondWaitTimeout (condition_variable_t *cp, sysinterval_t timeout) |
| Waits on the condition variable releasing the mutex lock. | |
| msg_t | chCondWaitTimeoutS (condition_variable_t *cp, sysinterval_t timeout) |
| Waits on the condition variable releasing the mutex lock. | |
Condition Variables code.
Definition in file chcond.c.