Lines Matching defs:timeout
83 * @timeout: typically an absolute struct timespec (except where noted
92 * some of the types over overloaded (timeout is used for nr_requeue for
98 #define futex(uaddr, op, val, timeout, uaddr2, val3, opflags) \
99 syscall(SYS_futex, uaddr, op | opflags, val, timeout, uaddr2, val3)
102 * futex_wait() - block on uaddr with optional timeout
103 * @timeout: relative timeout
106 futex_wait(futex_t *uaddr, futex_t val, struct timespec *timeout, int opflags)
108 return futex(uaddr, FUTEX_WAIT, val, timeout, NULL, 0, opflags);
126 futex_wait_bitset(futex_t *uaddr, futex_t val, struct timespec *timeout,
129 return futex(uaddr, FUTEX_WAIT_BITSET, val, timeout, NULL, bitset,
149 futex_lock_pi(futex_t *uaddr, struct timespec *timeout, int detect,
152 return futex(uaddr, FUTEX_LOCK_PI, detect, timeout, NULL, 0, opflags);
214 struct timespec *timeout, int opflags)
216 return futex(uaddr, FUTEX_WAIT_REQUEUE_PI, val, timeout, uaddr2, 0,