pthread_cond_wait method

int pthread_cond_wait(
  1. Pointer<pthread_cond_t> arg0,
  2. Pointer<pthread_mutex_t> arg1
)

Implementation

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