Lines Matching refs:timeout
35 * @timeout: typically an absolute struct timespec (except where noted
49 futex_syscall(volatile u_int32_t *uaddr, int op, u_int32_t val, struct timespec *timeout,
52 return syscall(SYS_futex, uaddr, op | opflags, val, timeout, uaddr2, val3);
63 * futex_wait() - block on uaddr with optional timeout
64 * @timeout: relative timeout
67 futex_wait(u_int32_t *uaddr, u_int32_t val, struct timespec *timeout, int opflags)
69 return futex_syscall(uaddr, FUTEX_WAIT, val, timeout, NULL, 0, opflags);
86 futex_lock_pi(u_int32_t *uaddr, struct timespec *timeout, int opflags)
88 return futex_syscall(uaddr, FUTEX_LOCK_PI, 0, timeout, NULL, 0, opflags);
123 struct timespec *timeout, int opflags)
125 return futex_syscall(uaddr, FUTEX_WAIT_REQUEUE_PI, val, timeout, uaddr2, 0,