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/Makefile | |
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/Makefile')
-rw-r--r-- | nptl/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/nptl/Makefile b/nptl/Makefile index 5e0347b5b1..f81b2f64df 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -84,6 +84,7 @@ routines = \ pthread_barrierattr_init \ pthread_barrierattr_setpshared \ pthread_cleanup_upto \ + pthread_clockjoin \ pthread_cond_broadcast \ pthread_cond_destroy \ pthread_cond_init \ @@ -102,6 +103,8 @@ routines = \ pthread_getattr_np \ pthread_getschedparam \ pthread_getspecific \ + pthread_join \ + pthread_join_common \ pthread_key_create \ pthread_key_delete \ pthread_keys \ @@ -161,6 +164,8 @@ routines = \ pthread_spin_trylock \ pthread_spin_unlock \ pthread_testcancel \ + pthread_timedjoin \ + pthread_tryjoin \ pthread_yield \ sem_clockwait \ sem_close \ @@ -197,21 +202,16 @@ libpthread-routines = \ pthread_attr_setstackaddr \ pthread_attr_setstacksize \ pthread_cancel \ - pthread_clockjoin \ pthread_create \ pthread_getattr_default_np \ pthread_getconcurrency \ pthread_getcpuclockid \ pthread_getname \ - pthread_join \ - pthread_join_common \ pthread_setaffinity \ pthread_setconcurrency \ pthread_setname \ pthread_setschedprio \ pthread_sigqueue \ - pthread_timedjoin \ - pthread_tryjoin \ version \ libpthread-shared-only-routines = \ |