mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
nptl: Move call_once into libc
The symbol was moved using scripts/move-symbol-to-libc.py. This change also turns __pthread_once into a compatibility symbol because after the call_once move, an internal call to __pthread_once can be used. This an adjustment to __libc_once: Outside libc (e.g., in nscd), it has to call pthread_once. With __pthread_once as a compatibility symbol, it is no longer to add a new GLIBC_2.34 version after the move from libpthread, and this commit removes the new __pthread_once@@GLIBC_2.34 version. Reviewed-by: Carlos O'Donell <carlos@redhat.com> Tested-by: Carlos O'Donell <carlos@redhat.com>
This commit is contained in:
@ -2198,6 +2198,7 @@ GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.27 wcstof64x F
|
||||
GLIBC_2.27 wcstof64x_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
GLIBC_2.28 statx F
|
||||
@ -2247,9 +2248,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -69,7 +69,6 @@ GLIBC_2.17 sem_unlink F
|
||||
GLIBC_2.17 sem_wait F
|
||||
GLIBC_2.18 pthread_getattr_default_np F
|
||||
GLIBC_2.18 pthread_setattr_default_np F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -2091,6 +2091,7 @@ GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.27 wcstof64x F
|
||||
GLIBC_2.27 wcstof64x_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
GLIBC_2.28 statx F
|
||||
@ -2328,9 +2329,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -69,7 +69,6 @@ GLIBC_2.2 pthread_yield F
|
||||
GLIBC_2.2 sem_timedwait F
|
||||
GLIBC_2.2.3 __libpthread_version_placeholder F
|
||||
GLIBC_2.2.6 __libpthread_version_placeholder F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -593,6 +593,7 @@ GLIBC_2.32 bzero F
|
||||
GLIBC_2.32 c16rtomb F
|
||||
GLIBC_2.32 c32rtomb F
|
||||
GLIBC_2.32 cacheflush F
|
||||
GLIBC_2.32 call_once F
|
||||
GLIBC_2.32 calloc F
|
||||
GLIBC_2.32 canonicalize_file_name F
|
||||
GLIBC_2.32 capget F
|
||||
@ -2006,9 +2007,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -10,7 +10,6 @@ GLIBC_2.32 __pthread_rwlock_tryrdlock F
|
||||
GLIBC_2.32 __pthread_rwlock_trywrlock F
|
||||
GLIBC_2.32 __pthread_unregister_cancel F
|
||||
GLIBC_2.32 __pthread_unregister_cancel_restore F
|
||||
GLIBC_2.32 call_once F
|
||||
GLIBC_2.32 cnd_broadcast F
|
||||
GLIBC_2.32 cnd_destroy F
|
||||
GLIBC_2.32 cnd_init F
|
||||
|
@ -118,6 +118,7 @@ GLIBC_2.27 wcstof32x F
|
||||
GLIBC_2.27 wcstof32x_l F
|
||||
GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -171,9 +172,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -3,7 +3,6 @@ GLIBC_2.12 pthread_getname_np F
|
||||
GLIBC_2.12 pthread_setname_np F
|
||||
GLIBC_2.18 pthread_getattr_default_np F
|
||||
GLIBC_2.18 pthread_setattr_default_np F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -118,6 +118,7 @@ GLIBC_2.27 wcstof32x F
|
||||
GLIBC_2.27 wcstof32x_l F
|
||||
GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -168,9 +169,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -3,7 +3,6 @@ GLIBC_2.12 pthread_getname_np F
|
||||
GLIBC_2.12 pthread_setname_np F
|
||||
GLIBC_2.18 pthread_getattr_default_np F
|
||||
GLIBC_2.18 pthread_setattr_default_np F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -613,6 +613,7 @@ GLIBC_2.29 bzero F
|
||||
GLIBC_2.29 c16rtomb F
|
||||
GLIBC_2.29 c32rtomb F
|
||||
GLIBC_2.29 cacheflush F
|
||||
GLIBC_2.29 call_once F
|
||||
GLIBC_2.29 calloc F
|
||||
GLIBC_2.29 callrpc F
|
||||
GLIBC_2.29 canonicalize_file_name F
|
||||
@ -2190,9 +2191,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -10,7 +10,6 @@ GLIBC_2.29 __pthread_rwlock_tryrdlock F
|
||||
GLIBC_2.29 __pthread_rwlock_trywrlock F
|
||||
GLIBC_2.29 __pthread_unregister_cancel F
|
||||
GLIBC_2.29 __pthread_unregister_cancel_restore F
|
||||
GLIBC_2.29 call_once F
|
||||
GLIBC_2.29 cnd_broadcast F
|
||||
GLIBC_2.29 cnd_destroy F
|
||||
GLIBC_2.29 cnd_init F
|
||||
|
@ -1929,6 +1929,7 @@ GLIBC_2.27 wcstof32x F
|
||||
GLIBC_2.27 wcstof32x_l F
|
||||
GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2141,9 +2142,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -61,7 +61,6 @@ GLIBC_2.2 sem_unlink F
|
||||
GLIBC_2.2 sem_wait F
|
||||
GLIBC_2.2.3 __libpthread_version_placeholder F
|
||||
GLIBC_2.2.6 __libpthread_version_placeholder F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -2103,6 +2103,7 @@ GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.27 wcstof64x F
|
||||
GLIBC_2.27 wcstof64x_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2318,9 +2319,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -69,7 +69,6 @@ GLIBC_2.2 pthread_yield F
|
||||
GLIBC_2.2 sem_timedwait F
|
||||
GLIBC_2.2.3 __libpthread_version_placeholder F
|
||||
GLIBC_2.2.6 __libpthread_version_placeholder F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -1965,6 +1965,7 @@ GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.27 wcstof64x F
|
||||
GLIBC_2.27 wcstof64x_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
GLIBC_2.28 statx F
|
||||
@ -2175,9 +2176,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -61,7 +61,6 @@ GLIBC_2.2 sem_unlink F
|
||||
GLIBC_2.2 sem_wait F
|
||||
GLIBC_2.2.3 __libpthread_version_placeholder F
|
||||
GLIBC_2.2.6 __libpthread_version_placeholder F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -119,6 +119,7 @@ GLIBC_2.27 wcstof32x F
|
||||
GLIBC_2.27 wcstof32x_l F
|
||||
GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -172,9 +173,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -3,7 +3,6 @@ GLIBC_2.12 pthread_getname_np F
|
||||
GLIBC_2.12 pthread_setname_np F
|
||||
GLIBC_2.18 pthread_getattr_default_np F
|
||||
GLIBC_2.18 pthread_setattr_default_np F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -2046,6 +2046,7 @@ GLIBC_2.27 wcstof32x F
|
||||
GLIBC_2.27 wcstof32x_l F
|
||||
GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2261,9 +2262,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -69,7 +69,6 @@ GLIBC_2.2 pthread_yield F
|
||||
GLIBC_2.2 sem_timedwait F
|
||||
GLIBC_2.2.3 __libpthread_version_placeholder F
|
||||
GLIBC_2.2.6 __libpthread_version_placeholder F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -2188,6 +2188,7 @@ GLIBC_2.27 wcstof32x F
|
||||
GLIBC_2.27 wcstof32x_l F
|
||||
GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2241,9 +2242,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -69,7 +69,6 @@ GLIBC_2.18 sem_timedwait F
|
||||
GLIBC_2.18 sem_trywait F
|
||||
GLIBC_2.18 sem_unlink F
|
||||
GLIBC_2.18 sem_wait F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -2188,6 +2188,7 @@ GLIBC_2.27 wcstof32x F
|
||||
GLIBC_2.27 wcstof32x_l F
|
||||
GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2238,9 +2239,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -69,7 +69,6 @@ GLIBC_2.18 sem_timedwait F
|
||||
GLIBC_2.18 sem_trywait F
|
||||
GLIBC_2.18 sem_unlink F
|
||||
GLIBC_2.18 sem_wait F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -2016,6 +2016,7 @@ GLIBC_2.27 wcstof32x F
|
||||
GLIBC_2.27 wcstof32x_l F
|
||||
GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2224,9 +2225,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -68,7 +68,6 @@ GLIBC_2.2 sem_unlink F
|
||||
GLIBC_2.2 sem_wait F
|
||||
GLIBC_2.2.3 __libpthread_version_placeholder F
|
||||
GLIBC_2.2.6 __libpthread_version_placeholder F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -2014,6 +2014,7 @@ GLIBC_2.27 wcstof32x F
|
||||
GLIBC_2.27 wcstof32x_l F
|
||||
GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2222,9 +2223,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -68,7 +68,6 @@ GLIBC_2.2 sem_unlink F
|
||||
GLIBC_2.2 sem_wait F
|
||||
GLIBC_2.2.3 __libpthread_version_placeholder F
|
||||
GLIBC_2.2.6 __libpthread_version_placeholder F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -2022,6 +2022,7 @@ GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.27 wcstof64x F
|
||||
GLIBC_2.27 wcstof64x_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2230,9 +2231,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -2018,6 +2018,7 @@ GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.27 wcstof64x F
|
||||
GLIBC_2.27 wcstof64x_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
GLIBC_2.28 statx F
|
||||
@ -2224,9 +2225,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -2230,6 +2230,7 @@ GLIBC_2.27 wcstof32x F
|
||||
GLIBC_2.27 wcstof32x_l F
|
||||
GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2280,9 +2281,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -69,7 +69,6 @@ GLIBC_2.21 sem_timedwait F
|
||||
GLIBC_2.21 sem_trywait F
|
||||
GLIBC_2.21 sem_unlink F
|
||||
GLIBC_2.21 sem_wait F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -2050,6 +2050,7 @@ GLIBC_2.27 wcstof32x F
|
||||
GLIBC_2.27 wcstof32x_l F
|
||||
GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2288,9 +2289,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -69,7 +69,6 @@ GLIBC_2.2 pthread_yield F
|
||||
GLIBC_2.2 sem_timedwait F
|
||||
GLIBC_2.2.3 __libpthread_version_placeholder F
|
||||
GLIBC_2.2.6 __libpthread_version_placeholder F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -2054,6 +2054,7 @@ GLIBC_2.27 wcstof32x F
|
||||
GLIBC_2.27 wcstof32x_l F
|
||||
GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2321,9 +2322,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -119,6 +119,7 @@ GLIBC_2.27 wcstof32x F
|
||||
GLIBC_2.27 wcstof32x_l F
|
||||
GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
GLIBC_2.28 statx F
|
||||
@ -2142,9 +2143,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -3,7 +3,6 @@ GLIBC_2.12 pthread_getname_np F
|
||||
GLIBC_2.12 pthread_setname_np F
|
||||
GLIBC_2.18 pthread_getattr_default_np F
|
||||
GLIBC_2.18 pthread_setattr_default_np F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -2288,6 +2288,7 @@ GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.27 wcstof64x F
|
||||
GLIBC_2.27 wcstof64x_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
GLIBC_2.28 statx F
|
||||
@ -2443,9 +2444,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -69,7 +69,6 @@ GLIBC_2.17 sem_unlink F
|
||||
GLIBC_2.17 sem_wait F
|
||||
GLIBC_2.18 pthread_getattr_default_np F
|
||||
GLIBC_2.18 pthread_setattr_default_np F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -586,6 +586,7 @@ GLIBC_2.33 btowc F
|
||||
GLIBC_2.33 bzero F
|
||||
GLIBC_2.33 c16rtomb F
|
||||
GLIBC_2.33 c32rtomb F
|
||||
GLIBC_2.33 call_once F
|
||||
GLIBC_2.33 calloc F
|
||||
GLIBC_2.33 canonicalize_file_name F
|
||||
GLIBC_2.33 capget F
|
||||
@ -2008,9 +2009,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -10,7 +10,6 @@ GLIBC_2.33 __pthread_rwlock_tryrdlock F
|
||||
GLIBC_2.33 __pthread_rwlock_trywrlock F
|
||||
GLIBC_2.33 __pthread_unregister_cancel F
|
||||
GLIBC_2.33 __pthread_unregister_cancel_restore F
|
||||
GLIBC_2.33 call_once F
|
||||
GLIBC_2.33 cnd_broadcast F
|
||||
GLIBC_2.33 cnd_destroy F
|
||||
GLIBC_2.33 cnd_init F
|
||||
|
@ -2159,6 +2159,7 @@ GLIBC_2.27 xdrstdio_create F
|
||||
GLIBC_2.27 xencrypt F
|
||||
GLIBC_2.27 xprt_register F
|
||||
GLIBC_2.27 xprt_unregister F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
GLIBC_2.28 statx F
|
||||
@ -2208,9 +2209,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -69,7 +69,6 @@ GLIBC_2.27 sem_timedwait F
|
||||
GLIBC_2.27 sem_trywait F
|
||||
GLIBC_2.27 sem_unlink F
|
||||
GLIBC_2.27 sem_wait F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -2059,6 +2059,7 @@ GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.27 wcstof64x F
|
||||
GLIBC_2.27 wcstof64x_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2286,9 +2287,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -70,7 +70,6 @@ GLIBC_2.2 pthread_yield F
|
||||
GLIBC_2.2 sem_timedwait F
|
||||
GLIBC_2.2.3 __libpthread_version_placeholder F
|
||||
GLIBC_2.2.6 __libpthread_version_placeholder F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -1957,6 +1957,7 @@ GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.27 wcstof64x F
|
||||
GLIBC_2.27 wcstof64x_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
GLIBC_2.28 statx F
|
||||
@ -2179,9 +2180,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -62,7 +62,6 @@ GLIBC_2.2 sem_unlink F
|
||||
GLIBC_2.2 sem_wait F
|
||||
GLIBC_2.2.3 __libpthread_version_placeholder F
|
||||
GLIBC_2.2.6 __libpthread_version_placeholder F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -1933,6 +1933,7 @@ GLIBC_2.27 wcstof32x F
|
||||
GLIBC_2.27 wcstof32x_l F
|
||||
GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2148,9 +2149,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -61,7 +61,6 @@ GLIBC_2.2 sem_unlink F
|
||||
GLIBC_2.2 sem_wait F
|
||||
GLIBC_2.2.3 __libpthread_version_placeholder F
|
||||
GLIBC_2.2.6 __libpthread_version_placeholder F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -1933,6 +1933,7 @@ GLIBC_2.27 wcstof32x F
|
||||
GLIBC_2.27 wcstof32x_l F
|
||||
GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2145,9 +2146,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -61,7 +61,6 @@ GLIBC_2.2 sem_unlink F
|
||||
GLIBC_2.2 sem_wait F
|
||||
GLIBC_2.2.3 __libpthread_version_placeholder F
|
||||
GLIBC_2.2.6 __libpthread_version_placeholder F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -2053,6 +2053,7 @@ GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.27 wcstof64x F
|
||||
GLIBC_2.27 wcstof64x_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2277,9 +2278,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -69,7 +69,6 @@ GLIBC_2.2 pthread_yield F
|
||||
GLIBC_2.2 sem_timedwait F
|
||||
GLIBC_2.2.3 __libpthread_version_placeholder F
|
||||
GLIBC_2.2.6 __libpthread_version_placeholder F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -1987,6 +1987,7 @@ GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.27 wcstof64x F
|
||||
GLIBC_2.27 wcstof64x_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
GLIBC_2.28 statx F
|
||||
@ -2196,9 +2197,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -61,7 +61,6 @@ GLIBC_2.2 sem_unlink F
|
||||
GLIBC_2.2 sem_wait F
|
||||
GLIBC_2.2.3 __libpthread_version_placeholder F
|
||||
GLIBC_2.2.6 __libpthread_version_placeholder F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -1946,6 +1946,7 @@ GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.27 wcstof64x F
|
||||
GLIBC_2.27 wcstof64x_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
GLIBC_2.28 statx F
|
||||
@ -2157,9 +2158,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -60,7 +60,6 @@ GLIBC_2.2.5 sem_trywait F
|
||||
GLIBC_2.2.5 sem_unlink F
|
||||
GLIBC_2.2.5 sem_wait F
|
||||
GLIBC_2.2.6 __libpthread_version_placeholder F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
@ -2211,6 +2211,7 @@ GLIBC_2.27 wcstof64 F
|
||||
GLIBC_2.27 wcstof64_l F
|
||||
GLIBC_2.27 wcstof64x F
|
||||
GLIBC_2.27 wcstof64x_l F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
GLIBC_2.28 statx F
|
||||
@ -2262,9 +2263,9 @@ GLIBC_2.34 __pthread_mutex_trylock F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_mutexattr_init F
|
||||
GLIBC_2.34 __pthread_mutexattr_settype F
|
||||
GLIBC_2.34 __pthread_once F
|
||||
GLIBC_2.34 __pthread_setspecific F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -69,7 +69,6 @@ GLIBC_2.16 sem_unlink F
|
||||
GLIBC_2.16 sem_wait F
|
||||
GLIBC_2.18 pthread_getattr_default_np F
|
||||
GLIBC_2.18 pthread_setattr_default_np F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
GLIBC_2.28 cnd_destroy F
|
||||
GLIBC_2.28 cnd_init F
|
||||
|
Reference in New Issue
Block a user