* @brief Wakes up all threads waiting on a condition variable. * @param cv Pointer to the condition variable. */
| 269 | * @param cv Pointer to the condition variable. |
| 270 | */ |
| 271 | static inline void CondVar_Broadcast(CondVar* cv) |
| 272 | { |
| 273 | CondVar_WakeUp(cv, ARBITRATION_SIGNAL_ALL); |
| 274 | } |
| 275 | |
| 276 | /** |
| 277 | * @brief Initializes a light event. |
no test coverage detected