pthread_cond_timedwait method

int pthread_cond_timedwait(
  1. Pointer<pthread_cond_t> arg0,
  2. Pointer<pthread_mutex_t> arg1,
  3. Pointer<timespec> arg2
)

Implementation

int pthread_cond_timedwait(
  ffi.Pointer<pthread_cond_t> arg0,
  ffi.Pointer<pthread_mutex_t> arg1,
  ffi.Pointer<timespec> arg2,
) {
  return _pthread_cond_timedwait(arg0, arg1, arg2);
}