Use futex on OpenBSD
authorBrad Smith <brad@comstyle.com>
Sat, 18 May 2024 04:34:06 +0000 (00:34 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Mon, 3 Jun 2024 13:56:29 +0000 (09:56 -0400)
Tested with "make check", "make regtest".

Signed-off-by: Brad Smith <brad@comstyle.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Change-Id: Icd334cda928f998a2cf455839d428ebbb4460f5e

include/urcu/futex.h

index 9d0a997473c025563bd9c557225e2029ecd6f831..b219835e0925b9d5b8e3ad64cc3e288b233fac2c 100644 (file)
 #include <sys/types.h>
 #include <sys/umtx.h>
 
+#elif defined(__OpenBSD__)
+
+#include <sys/time.h>
+#include <sys/futex.h>
+
 #endif
 
 #ifdef __cplusplus
 extern "C" {
 #endif
 
+#ifndef __OpenBSD__
 #define FUTEX_WAIT             0
 #define FUTEX_WAKE             1
+#endif
 
 /*
  * sys_futex compatibility header.
@@ -146,6 +153,36 @@ static inline int futex_noasync(int32_t *uaddr, int op, int32_t val,
        return futex_async(uaddr, op, val, timeout, uaddr2, val3);
 }
 
+#elif defined(__OpenBSD__)
+
+static inline int futex_noasync(int32_t *uaddr, int op, int32_t val,
+               const struct timespec *timeout, int32_t *uaddr2, int32_t val3)
+{
+       int ret;
+
+       ret = futex((volatile uint32_t *) uaddr, op, val, timeout,
+               (volatile uint32_t *) uaddr2);
+       if (caa_unlikely(ret < 0 && errno == ENOSYS)) {
+               return compat_futex_noasync(uaddr, op, val, timeout,
+                               uaddr2, val3);
+       }
+       return ret;
+}
+
+static inline int futex_async(int32_t *uaddr, int op, int32_t val,
+               const struct timespec *timeout, int32_t *uaddr2, int32_t val3)
+{
+       int ret;
+
+       ret = futex((volatile uint32_t *) uaddr, op, val, timeout,
+               (volatile uint32_t *) uaddr2);
+       if (caa_unlikely(ret < 0 && errno == ENOSYS)) {
+               return compat_futex_async(uaddr, op, val, timeout,
+                               uaddr2, val3);
+       }
+       return ret;
+}
+
 #elif defined(__CYGWIN__)
 
 /*
This page took 0.02659 seconds and 4 git commands to generate.