pub unsafe extern "C" fn CondVar_WakeUp(
cv: *mut CondVar,
num_threads: s32,
)Expand description
Wakes up threads waiting on a condition variable.
ยงArguments
cv- Pointer to the condition variable.num_threads- Maximum number of threads to wake up (or ARBITRATION_SIGNAL_ALL to wake them all).