* @brief Wakes up a single thread waiting on a condition variable. * @param cv Pointer to the condition variable. */
| 260 | * @param cv Pointer to the condition variable. |
| 261 | */ |
| 262 | static inline void CondVar_Signal(CondVar* cv) |
| 263 | { |
| 264 | CondVar_WakeUp(cv, 1); |
| 265 | } |
| 266 | |
| 267 | /** |
| 268 | * @brief Wakes up all threads waiting on a condition variable. |
no test coverage detected