X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;ds=sidebyside;f=liblttng-ust%2Ffutex.h;h=18c46a13d35e3a6920b6b4914d7f8a7c7fbccb01;hb=1d18d519668cd559dcafa1f18113edceb2418ed0;hp=8305c929b3ed9da7dae0fa7d8801e2ce09cb59ff;hpb=c0c0989ab70574e09b2f7e8b48c2da6af664a849;p=lttng-ust.git diff --git a/liblttng-ust/futex.h b/liblttng-ust/futex.h index 8305c929..18c46a13 100644 --- a/liblttng-ust/futex.h +++ b/liblttng-ust/futex.h @@ -14,8 +14,6 @@ #include #include -#include "helper.h" - #ifdef __cplusplus extern "C" { #endif @@ -37,12 +35,13 @@ extern "C" { * (returns EINTR). */ -LTTNG_HIDDEN extern int lttng_ust_compat_futex_noasync(int32_t *uaddr, int op, int32_t val, - const struct timespec *timeout, int32_t *uaddr2, int32_t val3); -LTTNG_HIDDEN + const struct timespec *timeout, int32_t *uaddr2, int32_t val3) + __attribute__((visibility("hidden"))); + extern int lttng_ust_compat_futex_async(int32_t *uaddr, int op, int32_t val, - const struct timespec *timeout, int32_t *uaddr2, int32_t val3); + const struct timespec *timeout, int32_t *uaddr2, int32_t val3) + __attribute__((visibility("hidden"))); #if (defined(__linux__) && defined(__NR_futex))