mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 04:50:07 +00:00
nptl: Move tss_delete into libc
The symbol was moved using scripts/move-symbol-to-libc.py. __pthread_key_delete@@GLIBC_PRIVATE is no longer needed after that, so it is removed as well. Reviewed-by: Carlos O'Donell <carlos@redhat.com> Tested-by: Carlos O'Donell <carlos@redhat.com>
This commit is contained in:
parent
e4036b1ce9
commit
deb317d510
@ -145,6 +145,7 @@ libc {
|
||||
thrd_sleep;
|
||||
thrd_yield;
|
||||
tss_create;
|
||||
tss_delete;
|
||||
}
|
||||
GLIBC_2.30 {
|
||||
pthread_cond_clockwait;
|
||||
@ -214,6 +215,7 @@ libc {
|
||||
pthread_spin_unlock;
|
||||
thrd_exit;
|
||||
tss_create;
|
||||
tss_delete;
|
||||
}
|
||||
GLIBC_PRIVATE {
|
||||
__futex_abstimed_wait64;
|
||||
@ -245,7 +247,6 @@ libc {
|
||||
__pthread_current_priority;
|
||||
__pthread_force_elision;
|
||||
__pthread_getattr_default_np;
|
||||
__pthread_key_delete;
|
||||
__pthread_keys;
|
||||
__pthread_mutex_unlock_usercnt;
|
||||
__pthread_setcancelstate;
|
||||
@ -393,7 +394,6 @@ libpthread {
|
||||
thrd_create;
|
||||
thrd_detach;
|
||||
thrd_join;
|
||||
tss_delete;
|
||||
tss_get;
|
||||
tss_set;
|
||||
}
|
||||
|
@ -42,9 +42,9 @@ ___pthread_key_delete (pthread_key_t key)
|
||||
versioned_symbol (libc, ___pthread_key_delete, pthread_key_delete,
|
||||
GLIBC_2_34);
|
||||
libc_hidden_ver (___pthread_key_delete, __pthread_key_delete)
|
||||
|
||||
versioned_symbol (libc, ___pthread_key_delete, __pthread_key_delete,
|
||||
GLIBC_PRIVATE);
|
||||
#ifndef SHARED
|
||||
strong_alias (___pthread_key_delete, __pthread_key_delete)
|
||||
#endif
|
||||
|
||||
#if OTHER_SHLIB_COMPAT (libpthread, GLIBC_2_0, GLIBC_2_34)
|
||||
compat_symbol (libpthread, ___pthread_key_delete, pthread_key_delete,
|
||||
|
@ -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_delete tss_get tss_set
|
||||
tss_get tss_set
|
||||
|
||||
$(libpthread-routines-var) += \
|
||||
call_once \
|
||||
@ -50,6 +50,7 @@ $(libpthread-routines-var) += \
|
||||
mtx_unlock \
|
||||
thrd_exit \
|
||||
tss_create \
|
||||
tss_delete \
|
||||
|
||||
tests += tst-cnd-basic tst-mtx-trylock tst-cnd-broadcast \
|
||||
tst-cnd-timedwait tst-thrd-detach tst-mtx-basic tst-thrd-sleep \
|
||||
|
@ -16,10 +16,19 @@
|
||||
License along with the GNU C Library; if not, see
|
||||
<https://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <shlib-compat.h>
|
||||
#include "thrd_priv.h"
|
||||
|
||||
void
|
||||
tss_delete (tss_t tss_id)
|
||||
__tss_delete (tss_t tss_id)
|
||||
{
|
||||
__pthread_key_delete (tss_id);
|
||||
}
|
||||
#if PTHREAD_IN_LIBC
|
||||
versioned_symbol (libc, __tss_delete, tss_delete, GLIBC_2_34);
|
||||
# if OTHER_SHLIB_COMPAT (libpthread, GLIBC_2_28, GLIBC_2_34)
|
||||
compat_symbol (libpthread, __tss_delete, tss_delete, GLIBC_2_28);
|
||||
# endif
|
||||
#else /* !PTHREAD_IN_LIBC */
|
||||
strong_alias (__tss_delete, tss_delete)
|
||||
#endif
|
||||
|
@ -2220,6 +2220,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2311,3 +2312,4 @@ 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
|
||||
GLIBC_2.34 tss_delete F
|
||||
|
@ -72,7 +72,6 @@ GLIBC_2.18 pthread_setattr_default_np F
|
||||
GLIBC_2.28 thrd_create F
|
||||
GLIBC_2.28 thrd_detach F
|
||||
GLIBC_2.28 thrd_join F
|
||||
GLIBC_2.28 tss_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.30 pthread_rwlock_clockrdlock F
|
||||
|
@ -2113,6 +2113,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2392,6 +2393,7 @@ 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
|
||||
GLIBC_2.34 tss_delete 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_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.3.2 __libpthread_version_placeholder F
|
||||
|
@ -1856,6 +1856,7 @@ GLIBC_2.32 truncate F
|
||||
GLIBC_2.32 truncate64 F
|
||||
GLIBC_2.32 tsearch F
|
||||
GLIBC_2.32 tss_create F
|
||||
GLIBC_2.32 tss_delete F
|
||||
GLIBC_2.32 ttyname F
|
||||
GLIBC_2.32 ttyname_r F
|
||||
GLIBC_2.32 ttyslot F
|
||||
@ -2070,3 +2071,4 @@ 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
|
||||
GLIBC_2.34 tss_delete F
|
||||
|
@ -76,6 +76,5 @@ 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_delete F
|
||||
GLIBC_2.32 tss_get F
|
||||
GLIBC_2.32 tss_set F
|
||||
|
@ -141,6 +141,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -235,6 +236,7 @@ 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
|
||||
GLIBC_2.34 tss_delete F
|
||||
GLIBC_2.4 _Exit F
|
||||
GLIBC_2.4 _IO_2_1_stderr_ D 0xa0
|
||||
GLIBC_2.4 _IO_2_1_stdin_ D 0xa0
|
||||
|
@ -6,7 +6,6 @@ GLIBC_2.18 pthread_setattr_default_np F
|
||||
GLIBC_2.28 thrd_create F
|
||||
GLIBC_2.28 thrd_detach F
|
||||
GLIBC_2.28 thrd_join F
|
||||
GLIBC_2.28 tss_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.30 pthread_rwlock_clockrdlock F
|
||||
|
@ -141,6 +141,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -232,6 +233,7 @@ 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
|
||||
GLIBC_2.34 tss_delete F
|
||||
GLIBC_2.4 _Exit F
|
||||
GLIBC_2.4 _IO_2_1_stderr_ D 0xa0
|
||||
GLIBC_2.4 _IO_2_1_stdin_ D 0xa0
|
||||
|
@ -6,7 +6,6 @@ GLIBC_2.18 pthread_setattr_default_np F
|
||||
GLIBC_2.28 thrd_create F
|
||||
GLIBC_2.28 thrd_detach F
|
||||
GLIBC_2.28 thrd_join F
|
||||
GLIBC_2.28 tss_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.30 pthread_rwlock_clockrdlock F
|
||||
|
@ -1950,6 +1950,7 @@ GLIBC_2.29 truncate F
|
||||
GLIBC_2.29 truncate64 F
|
||||
GLIBC_2.29 tsearch F
|
||||
GLIBC_2.29 tss_create F
|
||||
GLIBC_2.29 tss_delete F
|
||||
GLIBC_2.29 ttyname F
|
||||
GLIBC_2.29 ttyname_r F
|
||||
GLIBC_2.29 ttyslot F
|
||||
@ -2254,3 +2255,4 @@ 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
|
||||
GLIBC_2.34 tss_delete F
|
||||
|
@ -72,7 +72,6 @@ GLIBC_2.29 sem_wait F
|
||||
GLIBC_2.29 thrd_create F
|
||||
GLIBC_2.29 thrd_detach F
|
||||
GLIBC_2.29 thrd_join F
|
||||
GLIBC_2.29 tss_delete F
|
||||
GLIBC_2.29 tss_get F
|
||||
GLIBC_2.29 tss_set F
|
||||
GLIBC_2.30 pthread_rwlock_clockrdlock F
|
||||
|
@ -1952,6 +1952,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2205,6 +2206,7 @@ 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
|
||||
GLIBC_2.34 tss_delete 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_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.3.2 __libpthread_version_placeholder F
|
||||
|
@ -2126,6 +2126,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2382,6 +2383,7 @@ 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
|
||||
GLIBC_2.34 tss_delete F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk 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_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.3.2 __libpthread_version_placeholder F
|
||||
|
@ -1987,6 +1987,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2239,6 +2240,7 @@ 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
|
||||
GLIBC_2.34 tss_delete 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_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.3.2 __libpthread_version_placeholder F
|
||||
|
@ -142,6 +142,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -236,6 +237,7 @@ 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
|
||||
GLIBC_2.34 tss_delete F
|
||||
GLIBC_2.4 _Exit F
|
||||
GLIBC_2.4 _IO_2_1_stderr_ D 0x98
|
||||
GLIBC_2.4 _IO_2_1_stdin_ D 0x98
|
||||
|
@ -6,7 +6,6 @@ GLIBC_2.18 pthread_setattr_default_np F
|
||||
GLIBC_2.28 thrd_create F
|
||||
GLIBC_2.28 thrd_detach F
|
||||
GLIBC_2.28 thrd_join F
|
||||
GLIBC_2.28 tss_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.30 pthread_rwlock_clockrdlock F
|
||||
|
@ -2069,6 +2069,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2325,6 +2326,7 @@ 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
|
||||
GLIBC_2.34 tss_delete F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk 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_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.3.2 __libpthread_version_placeholder F
|
||||
|
@ -2211,6 +2211,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2305,3 +2306,4 @@ 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
|
||||
GLIBC_2.34 tss_delete F
|
||||
|
@ -72,7 +72,6 @@ GLIBC_2.18 sem_wait F
|
||||
GLIBC_2.28 thrd_create F
|
||||
GLIBC_2.28 thrd_detach F
|
||||
GLIBC_2.28 thrd_join F
|
||||
GLIBC_2.28 tss_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.30 pthread_rwlock_clockrdlock F
|
||||
|
@ -2211,6 +2211,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2302,3 +2303,4 @@ 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
|
||||
GLIBC_2.34 tss_delete F
|
||||
|
@ -72,7 +72,6 @@ GLIBC_2.18 sem_wait F
|
||||
GLIBC_2.28 thrd_create F
|
||||
GLIBC_2.28 thrd_detach F
|
||||
GLIBC_2.28 thrd_join F
|
||||
GLIBC_2.28 tss_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.30 pthread_rwlock_clockrdlock F
|
||||
|
@ -2039,6 +2039,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2288,6 +2289,7 @@ 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
|
||||
GLIBC_2.34 tss_delete F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -71,7 +71,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_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.3.2 __libpthread_version_placeholder F
|
||||
|
@ -2037,6 +2037,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2286,6 +2287,7 @@ 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
|
||||
GLIBC_2.34 tss_delete F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -71,7 +71,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_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.3.2 __libpthread_version_placeholder F
|
||||
|
@ -2045,6 +2045,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2294,6 +2295,7 @@ 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
|
||||
GLIBC_2.34 tss_delete F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -2040,6 +2040,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2288,6 +2289,7 @@ 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
|
||||
GLIBC_2.34 tss_delete F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -2253,6 +2253,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2344,3 +2345,4 @@ 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
|
||||
GLIBC_2.34 tss_delete F
|
||||
|
@ -72,7 +72,6 @@ GLIBC_2.21 sem_wait F
|
||||
GLIBC_2.28 thrd_create F
|
||||
GLIBC_2.28 thrd_detach F
|
||||
GLIBC_2.28 thrd_join F
|
||||
GLIBC_2.28 tss_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.30 pthread_rwlock_clockrdlock F
|
||||
|
@ -2073,6 +2073,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2352,6 +2353,7 @@ 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
|
||||
GLIBC_2.34 tss_delete 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_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.3.2 __libpthread_version_placeholder F
|
||||
|
@ -2077,6 +2077,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2385,6 +2386,7 @@ 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
|
||||
GLIBC_2.34 tss_delete F
|
||||
GLIBC_2.4 _IO_fprintf F
|
||||
GLIBC_2.4 _IO_printf F
|
||||
GLIBC_2.4 _IO_sprintf F
|
||||
|
@ -141,6 +141,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2206,6 +2207,7 @@ 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
|
||||
GLIBC_2.34 tss_delete F
|
||||
GLIBC_2.4 _IO_fprintf F
|
||||
GLIBC_2.4 _IO_printf F
|
||||
GLIBC_2.4 _IO_sprintf F
|
||||
|
@ -6,7 +6,6 @@ GLIBC_2.18 pthread_setattr_default_np F
|
||||
GLIBC_2.28 thrd_create F
|
||||
GLIBC_2.28 thrd_detach F
|
||||
GLIBC_2.28 thrd_join F
|
||||
GLIBC_2.28 tss_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.3 _IO_flockfile F
|
||||
|
@ -2310,6 +2310,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2507,3 +2508,4 @@ 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
|
||||
GLIBC_2.34 tss_delete F
|
||||
|
@ -72,7 +72,6 @@ GLIBC_2.18 pthread_setattr_default_np F
|
||||
GLIBC_2.28 thrd_create F
|
||||
GLIBC_2.28 thrd_detach F
|
||||
GLIBC_2.28 thrd_join F
|
||||
GLIBC_2.28 tss_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.30 pthread_rwlock_clockrdlock F
|
||||
|
@ -1866,6 +1866,7 @@ GLIBC_2.33 truncate F
|
||||
GLIBC_2.33 truncate64 F
|
||||
GLIBC_2.33 tsearch F
|
||||
GLIBC_2.33 tss_create F
|
||||
GLIBC_2.33 tss_delete F
|
||||
GLIBC_2.33 ttyname F
|
||||
GLIBC_2.33 ttyname_r F
|
||||
GLIBC_2.33 ttyslot F
|
||||
@ -2072,3 +2073,4 @@ 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
|
||||
GLIBC_2.34 tss_delete F
|
||||
|
@ -76,6 +76,5 @@ GLIBC_2.33 sem_wait F
|
||||
GLIBC_2.33 thrd_create F
|
||||
GLIBC_2.33 thrd_detach F
|
||||
GLIBC_2.33 thrd_join F
|
||||
GLIBC_2.33 tss_delete F
|
||||
GLIBC_2.33 tss_get F
|
||||
GLIBC_2.33 tss_set F
|
||||
|
@ -2181,6 +2181,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2272,3 +2273,4 @@ 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
|
||||
GLIBC_2.34 tss_delete F
|
||||
|
@ -72,7 +72,6 @@ GLIBC_2.27 sem_wait F
|
||||
GLIBC_2.28 thrd_create F
|
||||
GLIBC_2.28 thrd_detach F
|
||||
GLIBC_2.28 thrd_join F
|
||||
GLIBC_2.28 tss_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.30 pthread_rwlock_clockrdlock F
|
||||
|
@ -2082,6 +2082,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2350,6 +2351,7 @@ 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
|
||||
GLIBC_2.34 tss_delete F
|
||||
GLIBC_2.4 _IO_fprintf F
|
||||
GLIBC_2.4 _IO_printf F
|
||||
GLIBC_2.4 _IO_sprintf F
|
||||
|
@ -73,7 +73,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_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.3.2 __libpthread_version_placeholder F
|
||||
|
@ -1979,6 +1979,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 __fentry__ F
|
||||
GLIBC_2.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
@ -2243,6 +2244,7 @@ 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
|
||||
GLIBC_2.34 tss_delete F
|
||||
GLIBC_2.4 _IO_fprintf F
|
||||
GLIBC_2.4 _IO_printf F
|
||||
GLIBC_2.4 _IO_sprintf F
|
||||
|
@ -65,7 +65,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_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.3.2 __libpthread_version_placeholder F
|
||||
|
@ -1956,6 +1956,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2212,6 +2213,7 @@ 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
|
||||
GLIBC_2.34 tss_delete 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_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.3.2 __libpthread_version_placeholder F
|
||||
|
@ -1956,6 +1956,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2209,6 +2210,7 @@ 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
|
||||
GLIBC_2.34 tss_delete 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_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.3.2 __libpthread_version_placeholder F
|
||||
|
@ -2076,6 +2076,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2341,6 +2342,7 @@ 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
|
||||
GLIBC_2.34 tss_delete 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_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.3.2 __libpthread_version_placeholder F
|
||||
|
@ -2009,6 +2009,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2260,6 +2261,7 @@ 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
|
||||
GLIBC_2.34 tss_delete 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_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.3.2 __libpthread_version_placeholder F
|
||||
|
@ -1968,6 +1968,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2221,6 +2222,7 @@ 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
|
||||
GLIBC_2.34 tss_delete F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -63,7 +63,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_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.3.2 __libpthread_version_placeholder F
|
||||
|
@ -2233,6 +2233,7 @@ GLIBC_2.28 thrd_exit F
|
||||
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.29 getcpu F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addchdir_np F
|
||||
GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F
|
||||
@ -2326,3 +2327,4 @@ 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
|
||||
GLIBC_2.34 tss_delete F
|
||||
|
@ -72,7 +72,6 @@ GLIBC_2.18 pthread_setattr_default_np F
|
||||
GLIBC_2.28 thrd_create F
|
||||
GLIBC_2.28 thrd_detach F
|
||||
GLIBC_2.28 thrd_join F
|
||||
GLIBC_2.28 tss_delete F
|
||||
GLIBC_2.28 tss_get F
|
||||
GLIBC_2.28 tss_set F
|
||||
GLIBC_2.30 pthread_rwlock_clockrdlock F
|
||||
|
Loading…
Reference in New Issue
Block a user