pthread_cond_wait method
Implementation
int pthread_cond_wait(
ffi.Pointer<pthread_cond_t> arg0,
ffi.Pointer<pthread_mutex_t> arg1,
) {
return _pthread_cond_wait(arg0, arg1);
}
int pthread_cond_wait(
ffi.Pointer<pthread_cond_t> arg0,
ffi.Pointer<pthread_mutex_t> arg1,
) {
return _pthread_cond_wait(arg0, arg1);
}