From a3bdb11cc1ba9817d92f3a3b409ab1baf3ba058e Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Mon, 30 Nov 2020 16:24:25 -0500 Subject: [PATCH] port: fix futex_async wrapper namespacing on FreeBSD Signed-off-by: Michael Jeanson Signed-off-by: Mathieu Desnoyers Change-Id: I5db3fe8a596d273e6a693f3e89e26719c552f027 --- liblttng-ust/futex.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liblttng-ust/futex.h b/liblttng-ust/futex.h index 902ceecf..cbee19c2 100644 --- a/liblttng-ust/futex.h +++ b/liblttng-ust/futex.h @@ -144,7 +144,7 @@ static inline int lttng_ust_futex_async(int32_t *uaddr, int op, int32_t val, static inline int lttng_ust_futex_noasync(int32_t *uaddr, int op, int32_t val, const struct timespec *timeout, int32_t *uaddr2, int32_t val3) { - return futex_async(uaddr, op, val, timeout, uaddr2, val3); + return lttng_ust_futex_async(uaddr, op, val, timeout, uaddr2, val3); } #elif defined(__CYGWIN__) -- 2.34.1