pub unsafe extern "C" fn CondVar_Wait(
cv: *mut CondVar,
lock: *mut LightLock,
)Expand description
Waits on a condition variable.
ยงArguments
cv- Pointer to the condition variable.lock- Pointer to the lock to atomically unlock/relock during the wait.