pthread_cond_timedwait method
int
pthread_cond_timedwait(
- Pointer<
pthread_cond_t> arg0, - Pointer<
pthread_mutex_t> arg1, - 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);
}