From: Michael Jeanson Date: Mon, 30 Nov 2020 21:24:25 +0000 (-0500) Subject: port: fix futex_async wrapper namespacing on FreeBSD X-Git-Tag: v2.13.0-rc1~417 X-Git-Url: http://git.lttng.org/?p=lttng-ust.git;a=commitdiff_plain;h=a3bdb11cc1ba9817d92f3a3b409ab1baf3ba058e port: fix futex_async wrapper namespacing on FreeBSD Signed-off-by: Michael Jeanson Signed-off-by: Mathieu Desnoyers Change-Id: I5db3fe8a596d273e6a693f3e89e26719c552f027 --- 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__)