diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-05-03 08:12:12 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-05-03 08:18:01 +0200 |
commit | a062ba38362f370aefac400e34ece13d09083752 (patch) | |
tree | 8ca67deeaecba5e56ef67641f93283963168b777 /sysdeps/pthread/Makefile | |
parent | nptl: Move tss_delete into libc (diff) | |
download | glibc-a062ba38362f370aefac400e34ece13d09083752.tar.gz glibc-a062ba38362f370aefac400e34ece13d09083752.tar.bz2 glibc-a062ba38362f370aefac400e34ece13d09083752.zip |
nptl: Move tss_get into libc
The symbol was moved using scripts/move-symbol-to-libc.py.
__pthread_getspecific@@GLIBC_2.34 is no longer needed after the move,
so it is removed with this commit, too.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Tested-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'sysdeps/pthread/Makefile')
-rw-r--r-- | sysdeps/pthread/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/pthread/Makefile b/sysdeps/pthread/Makefile index fd06d0a448..493087732d 100644 --- a/sysdeps/pthread/Makefile +++ b/sysdeps/pthread/Makefile @@ -32,7 +32,7 @@ headers += threads.h routines += thrd_current thrd_equal thrd_sleep thrd_yield libpthread-routines += thrd_create thrd_detach thrd_join \ - tss_get tss_set + tss_set $(libpthread-routines-var) += \ call_once \ @@ -51,6 +51,7 @@ $(libpthread-routines-var) += \ thrd_exit \ tss_create \ tss_delete \ + tss_get \ tests += tst-cnd-basic tst-mtx-trylock tst-cnd-broadcast \ tst-cnd-timedwait tst-thrd-detach tst-mtx-basic tst-thrd-sleep \ |