Lines Matching refs:opflags
81 #define futex(uaddr, op, val, timeout, uaddr2, val3, opflags) \ argument
82 syscall(SYS_futex, uaddr, op | opflags, val, timeout, uaddr2, val3)
89 futex_wait(futex_t *uaddr, futex_t val, struct timespec *timeout, int opflags) in futex_wait() argument
91 return futex(uaddr, FUTEX_WAIT, val, timeout, NULL, 0, opflags); in futex_wait()
99 futex_wake(futex_t *uaddr, int nr_wake, int opflags) in futex_wake() argument
101 return futex(uaddr, FUTEX_WAKE, nr_wake, NULL, NULL, 0, opflags); in futex_wake()
110 u_int32_t bitset, int opflags) in futex_wait_bitset() argument
113 opflags); in futex_wait_bitset()
121 futex_wake_bitset(futex_t *uaddr, int nr_wake, u_int32_t bitset, int opflags) in futex_wake_bitset() argument
124 opflags); in futex_wake_bitset()
133 int opflags) in futex_lock_pi() argument
135 return futex(uaddr, FUTEX_LOCK_PI, detect, timeout, NULL, 0, opflags); in futex_lock_pi()
142 futex_unlock_pi(futex_t *uaddr, int opflags) in futex_unlock_pi() argument
144 return futex(uaddr, FUTEX_UNLOCK_PI, 0, NULL, NULL, 0, opflags); in futex_unlock_pi()
152 int wake_op, int opflags) in futex_wake_op() argument
155 opflags); in futex_wake_op()
168 int opflags) in futex_requeue() argument
171 opflags); in futex_requeue()
181 int nr_requeue, int opflags) in futex_cmp_requeue() argument
184 val, opflags); in futex_cmp_requeue()
197 struct timespec *timeout, int opflags) in futex_wait_requeue_pi() argument
200 opflags); in futex_wait_requeue_pi()
212 int nr_requeue, int opflags) in futex_cmp_requeue_pi() argument
215 val, opflags); in futex_cmp_requeue_pi()