HomeSort by: relevance | last modified time | path
    Searched defs:futex_wait (Results 1 - 3 of 3) sorted by relevancy

  /xsrc/external/mit/MesaLib.old/dist/src/util/
futex.h 46 static inline int futex_wait(uint32_t *addr, int32_t value, const struct timespec *timeout) function
49 * FUTEX_WAIT, except that it treats the timeout as absolute. */
69 static inline int futex_wait(uint32_t *addr, int32_t value, struct timespec *timeout) function
  /xsrc/external/mit/MesaLib/dist/src/util/
futex.h 47 static inline int futex_wait(uint32_t *addr, int32_t value, const struct timespec *timeout) function
50 * FUTEX_WAIT, except that it treats the timeout as absolute. */
71 static inline int futex_wait(uint32_t *addr, int32_t value, struct timespec *timeout) function
101 static inline int futex_wait(uint32_t *addr, int32_t value, const struct timespec *timeout) function
106 return futex(addr, FUTEX_WAIT, value, NULL, NULL);
113 return futex(addr, FUTEX_WAIT, value, &tsrel, NULL);
  /xsrc/external/mit/libxshmfence/dist/src/
xshmfence_futex.h 44 static inline int futex_wait(int32_t *addr, int32_t value) { function
69 static inline int futex_wait(int32_t *addr, int32_t value) { function
70 return sys_futex(addr, FUTEX_WAIT, value, NULL, NULL, 0);

Completed in 36 milliseconds