MCPcopy Create free account
hub / github.com/devkitPro/libctru / CondVar_Signal

Function CondVar_Signal

libctru/include/3ds/synchronization.h:262–265  ·  view source on GitHub ↗

* @brief Wakes up a single thread waiting on a condition variable. * @param cv Pointer to the condition variable. */

Source from the content-addressed store, hash-verified

260 * @param cv Pointer to the condition variable.
261 */
262static 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.

Callers 1

__SYSCALL(cond_signal)Function · 0.85

Calls 1

CondVar_WakeUpFunction · 0.85

Tested by

no test coverage detected