Lines Matching refs:opflags

70 #define futex(uaddr, op, val, timeout, uaddr2, val3, opflags) \  argument
71 syscall(SYS_futex, uaddr, op | opflags, val, timeout, uaddr2, val3)
78 futex_wait(futex_t *uaddr, futex_t val, struct timespec *timeout, int opflags) in futex_wait() argument
80 return futex(uaddr, FUTEX_WAIT, val, timeout, NULL, 0, opflags); in futex_wait()
88 futex_wake(futex_t *uaddr, int nr_wake, int opflags) in futex_wake() argument
90 return futex(uaddr, FUTEX_WAKE, nr_wake, NULL, NULL, 0, opflags); in futex_wake()
99 u_int32_t bitset, int opflags) in futex_wait_bitset() argument
102 opflags); in futex_wait_bitset()
110 futex_wake_bitset(futex_t *uaddr, int nr_wake, u_int32_t bitset, int opflags) in futex_wake_bitset() argument
113 opflags); in futex_wake_bitset()
122 int opflags) in futex_lock_pi() argument
124 return futex(uaddr, FUTEX_LOCK_PI, detect, timeout, NULL, 0, opflags); in futex_lock_pi()
131 futex_unlock_pi(futex_t *uaddr, int opflags) in futex_unlock_pi() argument
133 return futex(uaddr, FUTEX_UNLOCK_PI, 0, NULL, NULL, 0, opflags); in futex_unlock_pi()
141 int wake_op, int opflags) in futex_wake_op() argument
144 opflags); in futex_wake_op()
157 int opflags) in futex_requeue() argument
160 opflags); in futex_requeue()
170 int nr_requeue, int opflags) in futex_cmp_requeue() argument
173 val, opflags); in futex_cmp_requeue()
186 struct timespec *timeout, int opflags) in futex_wait_requeue_pi() argument
189 opflags); in futex_wait_requeue_pi()
201 int nr_requeue, int opflags) in futex_cmp_requeue_pi() argument
204 val, opflags); in futex_cmp_requeue_pi()