diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-05-11 11:08:00 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-05-11 11:24:39 +0200 |
commit | ddd4a2d3c64642b34d95743db9032c2bb31c16b2 (patch) | |
tree | bfa7fb0ef9b4ba4cbf7412960ab665be2503db0c /nptl/pthread_timedjoin.c | |
parent | df65f897e9501aa5b64a5cbcb101301715f2ec2f (diff) | |
download | glibc-ddd4a2d3c64642b34d95743db9032c2bb31c16b2.tar glibc-ddd4a2d3c64642b34d95743db9032c2bb31c16b2.tar.gz glibc-ddd4a2d3c64642b34d95743db9032c2bb31c16b2.tar.bz2 glibc-ddd4a2d3c64642b34d95743db9032c2bb31c16b2.zip |
nptl: Move thread join functions into libc
The symbols pthread_clockjoin_np, pthread_join, pthread_timedjoin_np,
pthread_tryjoin_np, thrd_join were moved using
scripts/move-symbol-to-libc.py.
Moving the symbols at the same time avoids the need for temporary
exports.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'nptl/pthread_timedjoin.c')
-rw-r--r-- | nptl/pthread_timedjoin.c | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/nptl/pthread_timedjoin.c b/nptl/pthread_timedjoin.c index f5d0d3d6ce..ebc31f935a 100644 --- a/nptl/pthread_timedjoin.c +++ b/nptl/pthread_timedjoin.c @@ -18,21 +18,24 @@ #include <time.h> #include "pthreadP.h" +#include <shlib-compat.h> int -__pthread_timedjoin_np64 (pthread_t threadid, void **thread_return, - const struct __timespec64 *abstime) +___pthread_timedjoin_np64 (pthread_t threadid, void **thread_return, + const struct __timespec64 *abstime) { return __pthread_clockjoin_ex (threadid, thread_return, CLOCK_REALTIME, abstime, true); } -#if __TIMESIZE != 64 -libpthread_hidden_def (__pthread_timedjoin_np64) +#if __TIMESIZE == 64 +strong_alias (___pthread_timedjoin_np64, ___pthread_timedjoin_np) +#else /* __TIMESPEC64 != 64 */ +libc_hidden_ver (___pthread_timedjoin_np64, __pthread_timedjoin_np64) int -__pthread_timedjoin_np (pthread_t threadid, void **thread_return, - const struct timespec *abstime) + ___pthread_timedjoin_np (pthread_t threadid, void **thread_return, + const struct timespec *abstime) { if (abstime != NULL) { @@ -42,5 +45,10 @@ __pthread_timedjoin_np (pthread_t threadid, void **thread_return, else return __pthread_timedjoin_np64 (threadid, thread_return, NULL); } +#endif /* __TIMESPEC64 != 64 */ +versioned_symbol (libc, ___pthread_timedjoin_np, pthread_timedjoin_np, + GLIBC_2_34); +#if OTHER_SHLIB_COMPAT (libpthread, GLIBC_2_3_3, GLIBC_2_34) +compat_symbol (libpthread, ___pthread_timedjoin_np, pthread_timedjoin_np, + GLIBC_2_3_3); #endif -weak_alias (__pthread_timedjoin_np, pthread_timedjoin_np) |