Lines Matching refs:timeout
55 * @timeout: typically an absolute struct timespec (except where noted
64 * some of the types over overloaded (timeout is used for nr_requeue for
70 #define futex(uaddr, op, val, timeout, uaddr2, val3, opflags) \
71 syscall(SYS_futex, uaddr, op | opflags, val, timeout, uaddr2, val3)
74 * futex_wait() - block on uaddr with optional timeout
75 * @timeout: relative timeout
78 futex_wait(futex_t *uaddr, futex_t val, struct timespec *timeout, int opflags)
80 return futex(uaddr, FUTEX_WAIT, val, timeout, NULL, 0, opflags);
98 futex_wait_bitset(futex_t *uaddr, futex_t val, struct timespec *timeout,
101 return futex(uaddr, FUTEX_WAIT_BITSET, val, timeout, NULL, bitset,
121 futex_lock_pi(futex_t *uaddr, struct timespec *timeout, int detect,
124 return futex(uaddr, FUTEX_LOCK_PI, detect, timeout, NULL, 0, opflags);
186 struct timespec *timeout, int opflags)
188 return futex(uaddr, FUTEX_WAIT_REQUEUE_PI, val, timeout, uaddr2, 0,