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:08 +0200 |
commit | 2c5c5c87c981fd68e7f646db0d479311e820c2f7 (patch) | |
tree | 30f1a159054b0844316bfc28f1415a9e804c8e9b /sysdeps/unix/sysv/linux/arc | |
parent | a062ba38362f370aefac400e34ece13d09083752 (diff) | |
download | glibc-2c5c5c87c981fd68e7f646db0d479311e820c2f7.tar glibc-2c5c5c87c981fd68e7f646db0d479311e820c2f7.tar.gz glibc-2c5c5c87c981fd68e7f646db0d479311e820c2f7.tar.bz2 glibc-2c5c5c87c981fd68e7f646db0d479311e820c2f7.zip |
nptl: Move tss_set into libc
The symbol was moved using scripts/move-symbol-to-libc.py.
__pthread_setspecific@@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/unix/sysv/linux/arc')
-rw-r--r-- | sysdeps/unix/sysv/linux/arc/libc.abilist | 3 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/arc/libpthread.abilist | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/arc/libc.abilist b/sysdeps/unix/sysv/linux/arc/libc.abilist index 0255fcc1e1..96d580d045 100644 --- a/sysdeps/unix/sysv/linux/arc/libc.abilist +++ b/sysdeps/unix/sysv/linux/arc/libc.abilist @@ -1858,6 +1858,7 @@ GLIBC_2.32 tsearch 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 GLIBC_2.32 ttyname F GLIBC_2.32 ttyname_r F GLIBC_2.32 ttyslot F @@ -2017,7 +2018,6 @@ GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_mutex_lock F GLIBC_2.34 __pthread_mutex_unlock F -GLIBC_2.34 __pthread_setspecific F GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 call_once F GLIBC_2.34 cnd_broadcast F @@ -2073,3 +2073,4 @@ GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F GLIBC_2.34 tss_get F +GLIBC_2.34 tss_set F diff --git a/sysdeps/unix/sysv/linux/arc/libpthread.abilist b/sysdeps/unix/sysv/linux/arc/libpthread.abilist index d8023bec23..7601c64b7a 100644 --- a/sysdeps/unix/sysv/linux/arc/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/arc/libpthread.abilist @@ -76,4 +76,3 @@ 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_set F |