Lines Matching refs:opflags
74 #define futex(uaddr, op, val, timeout, uaddr2, val3, opflags) \ argument
75 syscall(SYS_futex, uaddr, op | opflags, val, timeout, uaddr2, val3)
82 futex_wait(futex_t *uaddr, futex_t val, struct timespec *timeout, int opflags) in futex_wait() argument
84 return futex(uaddr, FUTEX_WAIT, val, timeout, NULL, 0, opflags); in futex_wait()
92 futex_wake(futex_t *uaddr, int nr_wake, int opflags) in futex_wake() argument
94 return futex(uaddr, FUTEX_WAKE, nr_wake, NULL, NULL, 0, opflags); in futex_wake()
103 u_int32_t bitset, int opflags) in futex_wait_bitset() argument
106 opflags); in futex_wait_bitset()
114 futex_wake_bitset(futex_t *uaddr, int nr_wake, u_int32_t bitset, int opflags) in futex_wake_bitset() argument
117 opflags); in futex_wake_bitset()
126 int opflags) in futex_lock_pi() argument
128 return futex(uaddr, FUTEX_LOCK_PI, detect, timeout, NULL, 0, opflags); in futex_lock_pi()
135 futex_unlock_pi(futex_t *uaddr, int opflags) in futex_unlock_pi() argument
137 return futex(uaddr, FUTEX_UNLOCK_PI, 0, NULL, NULL, 0, opflags); in futex_unlock_pi()
145 int wake_op, int opflags) in futex_wake_op() argument
148 opflags); in futex_wake_op()
161 int opflags) in futex_requeue() argument
164 opflags); in futex_requeue()
174 int nr_requeue, int opflags) in futex_cmp_requeue() argument
177 val, opflags); in futex_cmp_requeue()
190 struct timespec *timeout, int opflags) in futex_wait_requeue_pi() argument
193 opflags); in futex_wait_requeue_pi()
205 int nr_requeue, int opflags) in futex_cmp_requeue_pi() argument
208 val, opflags); in futex_cmp_requeue_pi()