port: fix futex_async wrapper namespacing on FreeBSD
authorMichael Jeanson <mjeanson@efficios.com>
Mon, 30 Nov 2020 21:24:25 +0000 (16:24 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Mon, 7 Dec 2020 21:25:43 +0000 (16:25 -0500)
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Change-Id: I5db3fe8a596d273e6a693f3e89e26719c552f027

liblttng-ust/futex.h

index 902ceecf9a500e1db81ac359b5860db9343c7eb0..cbee19c2f522e13cc5a39ee97f9447f252d59326 100644 (file)
@@ -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__)
This page took 0.024928 seconds and 4 git commands to generate.