X-Git-Url: https://git.libre-soc.org/?p=mesa.git;a=blobdiff_plain;f=src%2Futil%2Ffutex.h;h=43097f4cd5b4ff9afd55460d192ea7a154ef9f70;hp=268af92882a1660a691d3c0fbc5cde870bd0b2a1;hb=HEAD;hpb=9996ddbb27c9eb39cd234a4abce6c3742572c770 diff --git a/src/util/futex.h b/src/util/futex.h index 268af92882a..43097f4cd5b 100644 --- a/src/util/futex.h +++ b/src/util/futex.h @@ -25,6 +25,7 @@ #define UTIL_FUTEX_H #if defined(HAVE_LINUX_FUTEX_H) +#define UTIL_FUTEX_SUPPORTED 1 #include #include @@ -52,6 +53,7 @@ static inline int futex_wait(uint32_t *addr, int32_t value, const struct timespe } #elif defined(__FreeBSD__) +#define UTIL_FUTEX_SUPPORTED 1 #include #include @@ -85,6 +87,34 @@ static inline int futex_wait(uint32_t *addr, int32_t value, struct timespec *tim return _umtx_op(addr, UMTX_OP_WAIT_UINT, (uint32_t)value, uaddr, uaddr2) == -1 ? errno : 0; } +#elif defined(__OpenBSD__) +#define UTIL_FUTEX_SUPPORTED 1 + +#include +#include + +static inline int futex_wake(uint32_t *addr, int count) +{ + return futex(addr, FUTEX_WAKE, count, NULL, NULL); +} + +static inline int futex_wait(uint32_t *addr, int32_t value, const struct timespec *timeout) +{ + struct timespec tsnow, tsrel; + + if (timeout == NULL) + return futex(addr, FUTEX_WAIT, value, NULL, NULL); + + clock_gettime(CLOCK_MONOTONIC, &tsnow); + if (timespeccmp(&tsnow, timeout, <)) + timespecsub(timeout, &tsnow, &tsrel); + else + timespecclear(&tsrel); + return futex(addr, FUTEX_WAIT, value, &tsrel, NULL); +} + +#else +#define UTIL_FUTEX_SUPPORTED 0 #endif #endif /* UTIL_FUTEX_H */