Lines Matching defs:value
51 static inline int futex_wait(uint32_t *addr, int32_t value, const struct timespec *timeout)
55 return sys_futex(addr, FUTEX_WAIT_BITSET, value, timeout, NULL,
75 static inline int futex_wait(uint32_t *addr, int32_t value, struct timespec *timeout)
83 assert(value == (int)(uint32_t)value); /* Check that bits weren't discarded */
91 return _umtx_op(addr, UMTX_OP_WAIT_UINT, (uint32_t)value, uaddr, uaddr2) == -1 ? errno : 0;
105 static inline int futex_wait(uint32_t *addr, int32_t value, const struct timespec *timeout)
110 return futex(addr, FUTEX_WAIT, value, NULL, NULL);
117 return futex(addr, FUTEX_WAIT, value, &tsrel, NULL);
142 static inline int futex_wait(uint32_t *addr, int32_t value, const struct timespec *timeout)
153 if (WaitOnAddress(addr, &value, sizeof(value), timeout_ms))