mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
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>
This commit is contained in:
@ -2078,6 +2078,7 @@ 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.28 tss_set 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
|
||||
@ -2288,7 +2289,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
|
||||
@ -2344,6 +2344,7 @@ 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
|
||||
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_set F
|
||||
GLIBC_2.3.2 __libpthread_version_placeholder F
|
||||
GLIBC_2.3.3 __pthread_register_cancel F
|
||||
GLIBC_2.3.3 __pthread_register_cancel_defer F
|
||||
|
@ -2011,6 +2011,7 @@ 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.28 tss_set 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
|
||||
@ -2207,7 +2208,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
|
||||
@ -2263,6 +2263,7 @@ 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
|
||||
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_set F
|
||||
GLIBC_2.3.2 __libpthread_version_placeholder F
|
||||
GLIBC_2.3.3 __pthread_register_cancel F
|
||||
GLIBC_2.3.3 __pthread_register_cancel_defer F
|
||||
|
Reference in New Issue
Block a user