mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-01 10:06:57 +03:00
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>
This commit is contained in:
@ -2077,6 +2077,7 @@ GLIBC_2.28 thrd_sleep F
|
||||
GLIBC_2.28 thrd_yield F
|
||||
GLIBC_2.28 tss_create F
|
||||
GLIBC_2.28 tss_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2284,7 +2285,6 @@ GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.34 __libc_start_main F
|
||||
GLIBC_2.34 __pthread_cleanup_routine F
|
||||
GLIBC_2.34 __pthread_getspecific F
|
||||
GLIBC_2.34 __pthread_key_create F
|
||||
GLIBC_2.34 __pthread_mutex_lock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
@ -2343,6 +2343,7 @@ GLIBC_2.34 pthread_spin_unlock F
|
||||
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.4 _IO_fprintf F
|
||||
GLIBC_2.4 _IO_printf F
|
||||
GLIBC_2.4 _IO_sprintf F
|
||||
|
@ -72,7 +72,6 @@ GLIBC_2.2.6 __libpthread_version_placeholder F
|
||||
GLIBC_2.28 thrd_create F
|
||||
GLIBC_2.28 thrd_detach F
|
||||
GLIBC_2.28 thrd_join F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.3.2 __libpthread_version_placeholder F
|
||||
GLIBC_2.3.3 __pthread_register_cancel F
|
||||
|
@ -2010,6 +2010,7 @@ GLIBC_2.28 thrd_sleep F
|
||||
GLIBC_2.28 thrd_yield F
|
||||
GLIBC_2.28 tss_create F
|
||||
GLIBC_2.28 tss_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2203,7 +2204,6 @@ GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.34 __libc_start_main F
|
||||
GLIBC_2.34 __pthread_cleanup_routine F
|
||||
GLIBC_2.34 __pthread_getspecific F
|
||||
GLIBC_2.34 __pthread_key_create F
|
||||
GLIBC_2.34 __pthread_mutex_lock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
@ -2262,6 +2262,7 @@ GLIBC_2.34 pthread_spin_unlock F
|
||||
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.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -64,7 +64,6 @@ GLIBC_2.2.6 __libpthread_version_placeholder F
|
||||
GLIBC_2.28 thrd_create F
|
||||
GLIBC_2.28 thrd_detach F
|
||||
GLIBC_2.28 thrd_join F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.3.2 __libpthread_version_placeholder F
|
||||
GLIBC_2.3.3 __pthread_register_cancel F
|
||||
|
Reference in New Issue
Block a user