mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-12 16:20:06 +00:00
nptl: Move cnd_init into libc
The symbol was moved using scripts/move-symbol-to-libc.py. The __pthread_cond_init@@GLIBC_PRIVATE symbol is no longer neded, so remove that as well. Reviewed-by: Carlos O'Donell <carlos@redhat.com> Tested-by: Carlos O'Donell <carlos@redhat.com>
This commit is contained in:
parent
f11c293a4c
commit
3eab466e56
@ -129,6 +129,7 @@ libc {
|
||||
call_once;
|
||||
cnd_broadcast;
|
||||
cnd_destroy;
|
||||
cnd_init;
|
||||
thrd_current;
|
||||
thrd_equal;
|
||||
thrd_sleep;
|
||||
@ -160,6 +161,7 @@ libc {
|
||||
call_once;
|
||||
cnd_broadcast;
|
||||
cnd_destroy;
|
||||
cnd_init;
|
||||
pthread_cond_clockwait;
|
||||
pthread_condattr_getclock;
|
||||
pthread_condattr_getpshared;
|
||||
@ -222,7 +224,6 @@ libc {
|
||||
__pthread_cleanup_pop;
|
||||
__pthread_cleanup_push;
|
||||
__pthread_cleanup_upto;
|
||||
__pthread_cond_init; # Used by the C11 threads.
|
||||
__pthread_cond_signal; # Used by the C11 threads.
|
||||
__pthread_cond_timedwait; # Used by the C11 threads.
|
||||
__pthread_cond_wait; # Used by the C11 threads.
|
||||
@ -376,7 +377,6 @@ libpthread {
|
||||
|
||||
# C11 thread symbols.
|
||||
GLIBC_2.28 {
|
||||
cnd_init;
|
||||
cnd_signal;
|
||||
cnd_timedwait;
|
||||
cnd_wait;
|
||||
|
@ -34,13 +34,14 @@ routines += thrd_current thrd_equal thrd_sleep thrd_yield
|
||||
libpthread-routines += thrd_create thrd_detach thrd_exit thrd_join \
|
||||
mtx_destroy mtx_init mtx_lock mtx_timedlock \
|
||||
mtx_trylock mtx_unlock \
|
||||
cnd_init cnd_signal cnd_timedwait cnd_wait \
|
||||
cnd_signal cnd_timedwait cnd_wait \
|
||||
tss_create tss_delete tss_get tss_set
|
||||
|
||||
$(libpthread-routines-var) += \
|
||||
call_once \
|
||||
cnd_broadcast \
|
||||
cnd_destroy \
|
||||
cnd_init \
|
||||
|
||||
tests += tst-cnd-basic tst-mtx-trylock tst-cnd-broadcast \
|
||||
tst-cnd-timedwait tst-thrd-detach tst-mtx-basic tst-thrd-sleep \
|
||||
|
@ -17,11 +17,12 @@
|
||||
<https://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <stdalign.h>
|
||||
#include <shlib-compat.h>
|
||||
|
||||
#include "thrd_priv.h"
|
||||
|
||||
int
|
||||
cnd_init (cnd_t *cond)
|
||||
__cnd_init (cnd_t *cond)
|
||||
{
|
||||
_Static_assert (sizeof (cnd_t) == sizeof (pthread_cond_t),
|
||||
"(sizeof (cnd_t) != sizeof (pthread_cond_t)");
|
||||
@ -31,3 +32,11 @@ cnd_init (cnd_t *cond)
|
||||
int err_code = __pthread_cond_init ((pthread_cond_t *)cond, NULL);
|
||||
return thrd_err_map (err_code);
|
||||
}
|
||||
#if PTHREAD_IN_LIBC
|
||||
versioned_symbol (libc, __cnd_init, cnd_init, GLIBC_2_34);
|
||||
# if OTHER_SHLIB_COMPAT (libpthread, GLIBC_2_28, GLIBC_2_34)
|
||||
compat_symbol (libpthread, __cnd_init, cnd_init, GLIBC_2_28);
|
||||
# endif
|
||||
#else /* !PTHREAD_IN_LIBC */
|
||||
strong_alias (__cnd_init, cnd_init)
|
||||
#endif
|
||||
|
@ -2201,6 +2201,7 @@ GLIBC_2.27 wcstof64x_l 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
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
GLIBC_2.28 statx F
|
||||
@ -2255,6 +2256,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -2094,6 +2094,7 @@ GLIBC_2.27 wcstof64x_l 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
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
GLIBC_2.28 statx F
|
||||
@ -2336,6 +2337,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -628,6 +628,7 @@ GLIBC_2.32 closedir F
|
||||
GLIBC_2.32 closelog F
|
||||
GLIBC_2.32 cnd_broadcast F
|
||||
GLIBC_2.32 cnd_destroy F
|
||||
GLIBC_2.32 cnd_init F
|
||||
GLIBC_2.32 confstr F
|
||||
GLIBC_2.32 connect F
|
||||
GLIBC_2.32 copy_file_range F
|
||||
@ -2014,6 +2015,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.32 cnd_signal F
|
||||
GLIBC_2.32 cnd_timedwait F
|
||||
GLIBC_2.32 cnd_wait F
|
||||
|
@ -121,6 +121,7 @@ GLIBC_2.27 wcstof64_l 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
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -179,6 +180,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -121,6 +121,7 @@ GLIBC_2.27 wcstof64_l 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
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -176,6 +177,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -663,6 +663,7 @@ GLIBC_2.29 closedir F
|
||||
GLIBC_2.29 closelog F
|
||||
GLIBC_2.29 cnd_broadcast F
|
||||
GLIBC_2.29 cnd_destroy F
|
||||
GLIBC_2.29 cnd_init F
|
||||
GLIBC_2.29 confstr F
|
||||
GLIBC_2.29 connect F
|
||||
GLIBC_2.29 copy_file_range F
|
||||
@ -2198,6 +2199,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.29 cnd_signal F
|
||||
GLIBC_2.29 cnd_timedwait F
|
||||
GLIBC_2.29 cnd_wait F
|
||||
|
@ -1932,6 +1932,7 @@ GLIBC_2.27 wcstof64_l 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
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2149,6 +2150,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -2106,6 +2106,7 @@ GLIBC_2.27 wcstof64x_l 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
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2326,6 +2327,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -1968,6 +1968,7 @@ GLIBC_2.27 wcstof64x_l 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
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
GLIBC_2.28 statx F
|
||||
@ -2183,6 +2184,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -122,6 +122,7 @@ GLIBC_2.27 wcstof64_l 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
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -180,6 +181,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -2049,6 +2049,7 @@ GLIBC_2.27 wcstof64_l 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
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2269,6 +2270,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -2191,6 +2191,7 @@ GLIBC_2.27 wcstof64_l 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
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2249,6 +2250,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -2191,6 +2191,7 @@ GLIBC_2.27 wcstof64_l 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
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2246,6 +2247,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -2019,6 +2019,7 @@ GLIBC_2.27 wcstof64_l 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
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2232,6 +2233,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -2017,6 +2017,7 @@ GLIBC_2.27 wcstof64_l 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
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2230,6 +2231,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -2025,6 +2025,7 @@ GLIBC_2.27 wcstof64x_l 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
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2238,6 +2239,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -2021,6 +2021,7 @@ GLIBC_2.27 wcstof64x_l 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
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
GLIBC_2.28 statx F
|
||||
@ -2232,6 +2233,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -2233,6 +2233,7 @@ GLIBC_2.27 wcstof64_l 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
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2288,6 +2289,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -2053,6 +2053,7 @@ GLIBC_2.27 wcstof64_l 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
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2296,6 +2297,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -2057,6 +2057,7 @@ GLIBC_2.27 wcstof64_l 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
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2329,6 +2330,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init F
|
||||
GLIBC_2.34 pthread_cond_clockwait F
|
||||
GLIBC_2.34 pthread_condattr_getclock F
|
||||
GLIBC_2.34 pthread_condattr_getpshared F
|
||||
|
@ -122,6 +122,7 @@ GLIBC_2.27 wcstof64_l 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
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
GLIBC_2.28 statx F
|
||||
@ -2150,6 +2151,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -2291,6 +2291,7 @@ GLIBC_2.27 wcstof64x_l 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
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
GLIBC_2.28 statx F
|
||||
@ -2451,6 +2452,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -621,6 +621,7 @@ GLIBC_2.33 closedir F
|
||||
GLIBC_2.33 closelog F
|
||||
GLIBC_2.33 cnd_broadcast F
|
||||
GLIBC_2.33 cnd_destroy F
|
||||
GLIBC_2.33 cnd_init F
|
||||
GLIBC_2.33 confstr F
|
||||
GLIBC_2.33 connect F
|
||||
GLIBC_2.33 copy_file_range F
|
||||
@ -2016,6 +2017,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.33 cnd_signal F
|
||||
GLIBC_2.33 cnd_timedwait F
|
||||
GLIBC_2.33 cnd_wait F
|
||||
|
@ -2162,6 +2162,7 @@ GLIBC_2.27 xprt_unregister 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
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
GLIBC_2.28 statx F
|
||||
@ -2216,6 +2217,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -2062,6 +2062,7 @@ GLIBC_2.27 wcstof64x_l 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
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2294,6 +2295,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -1960,6 +1960,7 @@ GLIBC_2.27 wcstof64x_l 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
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
GLIBC_2.28 statx F
|
||||
@ -2187,6 +2188,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -1936,6 +1936,7 @@ GLIBC_2.27 wcstof64_l 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
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2156,6 +2157,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -1936,6 +1936,7 @@ GLIBC_2.27 wcstof64_l 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
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2153,6 +2154,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -2056,6 +2056,7 @@ GLIBC_2.27 wcstof64x_l 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
|
||||
GLIBC_2.28 fcntl F
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
@ -2285,6 +2286,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -1990,6 +1990,7 @@ GLIBC_2.27 wcstof64x_l 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
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
GLIBC_2.28 statx F
|
||||
@ -2204,6 +2205,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -1949,6 +1949,7 @@ GLIBC_2.27 wcstof64x_l 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
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
GLIBC_2.28 statx F
|
||||
@ -2165,6 +2166,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
@ -2214,6 +2214,7 @@ GLIBC_2.27 wcstof64x_l 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
|
||||
GLIBC_2.28 fcntl64 F
|
||||
GLIBC_2.28 renameat2 F
|
||||
GLIBC_2.28 statx F
|
||||
@ -2270,6 +2271,7 @@ GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
GLIBC_2.34 cnd_init 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 cnd_init F
|
||||
GLIBC_2.28 cnd_signal F
|
||||
GLIBC_2.28 cnd_timedwait F
|
||||
GLIBC_2.28 cnd_wait F
|
||||
|
Loading…
Reference in New Issue
Block a user