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:17:29 +0200 |
commit | e4036b1ce9fa2f4086b050eb946f169c11efad08 (patch) | |
tree | 25d5a0be4781c845ea666591677d5d2a462da65b /sysdeps/unix/sysv/linux/arc | |
parent | 96e61709b49c3ebe4fa49c235ddafaad1f1dfc84 (diff) | |
download | glibc-e4036b1ce9fa2f4086b050eb946f169c11efad08.tar glibc-e4036b1ce9fa2f4086b050eb946f169c11efad08.tar.gz glibc-e4036b1ce9fa2f4086b050eb946f169c11efad08.tar.bz2 glibc-e4036b1ce9fa2f4086b050eb946f169c11efad08.zip |
nptl: Move tss_create into libc
The symbol was moved using scripts/move-symbol-to-libc.py.
__pthread_key_create@@GLIBC_2.34 is no longer needed by glibc
itself with this change, but __pthread_key_create is used by
libstdc++, so it still has to be exported as a public symbol.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Tested-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'sysdeps/unix/sysv/linux/arc')
-rw-r--r-- | sysdeps/unix/sysv/linux/arc/libc.abilist | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/arc/libpthread.abilist | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/arc/libc.abilist b/sysdeps/unix/sysv/linux/arc/libc.abilist index f647e9ceb9..3ccb9d8723 100644 --- a/sysdeps/unix/sysv/linux/arc/libc.abilist +++ b/sysdeps/unix/sysv/linux/arc/libc.abilist @@ -1855,6 +1855,7 @@ GLIBC_2.32 tr_break F GLIBC_2.32 truncate F GLIBC_2.32 truncate64 F GLIBC_2.32 tsearch F +GLIBC_2.32 tss_create F GLIBC_2.32 ttyname F GLIBC_2.32 ttyname_r F GLIBC_2.32 ttyslot F @@ -2068,3 +2069,4 @@ GLIBC_2.34 pthread_spin_lock F GLIBC_2.34 pthread_spin_trylock F GLIBC_2.34 pthread_spin_unlock F GLIBC_2.34 thrd_exit F +GLIBC_2.34 tss_create F diff --git a/sysdeps/unix/sysv/linux/arc/libpthread.abilist b/sysdeps/unix/sysv/linux/arc/libpthread.abilist index ed881e9417..f4cabfdc5e 100644 --- a/sysdeps/unix/sysv/linux/arc/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/arc/libpthread.abilist @@ -76,7 +76,6 @@ GLIBC_2.32 sem_wait F GLIBC_2.32 thrd_create F GLIBC_2.32 thrd_detach F GLIBC_2.32 thrd_join F -GLIBC_2.32 tss_create F GLIBC_2.32 tss_delete F GLIBC_2.32 tss_get F GLIBC_2.32 tss_set F |