1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-05 19:35:52 +03:00

nptl: Move pthread_getspecific, __pthread_getspecific into libc

The symbols have been moved using scripts/move-symbol-to-libc.py.
This commit is contained in:
Florian Weimer
2021-04-21 19:49:51 +02:00
parent 6f009ea984
commit aae43acfd1
68 changed files with 148 additions and 70 deletions

View File

@@ -78,6 +78,7 @@ routines = \
pthread_getaffinity \ pthread_getaffinity \
pthread_getattr_np \ pthread_getattr_np \
pthread_getschedparam \ pthread_getschedparam \
pthread_getspecific \
pthread_key_create \ pthread_key_create \
pthread_keys \ pthread_keys \
pthread_kill \ pthread_kill \
@@ -142,7 +143,6 @@ libpthread-routines = \
pthread_getconcurrency \ pthread_getconcurrency \
pthread_getcpuclockid \ pthread_getcpuclockid \
pthread_getname \ pthread_getname \
pthread_getspecific \
pthread_join \ pthread_join \
pthread_join_common \ pthread_join_common \
pthread_key_delete \ pthread_key_delete \

View File

@@ -1,5 +1,6 @@
libc { libc {
GLIBC_2.0 { GLIBC_2.0 {
__pthread_getspecific;
__pthread_key_create; __pthread_key_create;
__pthread_once; __pthread_once;
_pthread_cleanup_pop; _pthread_cleanup_pop;
@@ -29,6 +30,7 @@ libc {
pthread_equal; pthread_equal;
pthread_exit; pthread_exit;
pthread_getschedparam; pthread_getschedparam;
pthread_getspecific;
pthread_key_create; pthread_key_create;
pthread_kill; pthread_kill;
pthread_mutex_destroy; pthread_mutex_destroy;
@@ -89,8 +91,10 @@ libc {
} }
GLIBC_2.34 { GLIBC_2.34 {
__pthread_cleanup_routine; __pthread_cleanup_routine;
__pthread_getspecific;
__pthread_key_create; __pthread_key_create;
__pthread_once; __pthread_once;
pthread_getspecific;
pthread_key_create; pthread_key_create;
pthread_kill; pthread_kill;
pthread_mutex_consistent; pthread_mutex_consistent;
@@ -140,7 +144,6 @@ libpthread {
__errno_location; __errno_location;
__h_errno_location; __h_errno_location;
__pthread_atfork; __pthread_atfork;
__pthread_getspecific;
__pthread_mutex_destroy; __pthread_mutex_destroy;
__pthread_mutex_init; __pthread_mutex_init;
__pthread_mutex_lock; __pthread_mutex_lock;
@@ -162,7 +165,6 @@ libpthread {
pthread_cond_wait; pthread_cond_wait;
pthread_create; pthread_create;
pthread_detach; pthread_detach;
pthread_getspecific;
pthread_join; pthread_join;
pthread_key_delete; pthread_key_delete;
pthread_kill_other_threads_np; pthread_kill_other_threads_np;

View File

@@ -69,7 +69,6 @@ static const struct pthread_functions pthread_functions =
.ptr___pthread_rwlock_rdlock = __pthread_rwlock_rdlock, .ptr___pthread_rwlock_rdlock = __pthread_rwlock_rdlock,
.ptr___pthread_rwlock_wrlock = __pthread_rwlock_wrlock, .ptr___pthread_rwlock_wrlock = __pthread_rwlock_wrlock,
.ptr___pthread_rwlock_unlock = __pthread_rwlock_unlock, .ptr___pthread_rwlock_unlock = __pthread_rwlock_unlock,
.ptr___pthread_getspecific = __pthread_getspecific,
.ptr___pthread_setspecific = __pthread_setspecific, .ptr___pthread_setspecific = __pthread_setspecific,
.ptr__nptl_setxid = __nptl_setxid, .ptr__nptl_setxid = __nptl_setxid,
}; };

View File

@@ -524,6 +524,7 @@ extern int __pthread_condattr_init (pthread_condattr_t *attr);
extern int __pthread_key_create (pthread_key_t *key, void (*destr) (void *)); extern int __pthread_key_create (pthread_key_t *key, void (*destr) (void *));
extern int __pthread_key_delete (pthread_key_t key); extern int __pthread_key_delete (pthread_key_t key);
extern void *__pthread_getspecific (pthread_key_t key); extern void *__pthread_getspecific (pthread_key_t key);
libc_hidden_proto (__pthread_getspecific)
extern int __pthread_setspecific (pthread_key_t key, const void *value); extern int __pthread_setspecific (pthread_key_t key, const void *value);
extern int __pthread_once (pthread_once_t *once_control, extern int __pthread_once (pthread_once_t *once_control,
void (*init_routine) (void)); void (*init_routine) (void));
@@ -559,7 +560,6 @@ hidden_proto (__pthread_mutex_unlock)
hidden_proto (__pthread_rwlock_rdlock) hidden_proto (__pthread_rwlock_rdlock)
hidden_proto (__pthread_rwlock_wrlock) hidden_proto (__pthread_rwlock_wrlock)
hidden_proto (__pthread_rwlock_unlock) hidden_proto (__pthread_rwlock_unlock)
hidden_proto (__pthread_getspecific)
hidden_proto (__pthread_setspecific) hidden_proto (__pthread_setspecific)
hidden_proto (__pthread_testcancel) hidden_proto (__pthread_testcancel)
hidden_proto (__pthread_mutexattr_init) hidden_proto (__pthread_mutexattr_init)

View File

@@ -18,10 +18,10 @@
#include <stdlib.h> #include <stdlib.h>
#include "pthreadP.h" #include "pthreadP.h"
#include <shlib-compat.h>
void * void *
__pthread_getspecific (pthread_key_t key) ___pthread_getspecific (pthread_key_t key)
{ {
struct pthread_key_data *data; struct pthread_key_data *data;
@@ -63,5 +63,15 @@ __pthread_getspecific (pthread_key_t key)
return result; return result;
} }
weak_alias (__pthread_getspecific, pthread_getspecific) versioned_symbol (libc, ___pthread_getspecific, __pthread_getspecific,
hidden_def (__pthread_getspecific) GLIBC_2_34);
libc_hidden_ver (___pthread_getspecific, __pthread_getspecific)
versioned_symbol (libc, ___pthread_getspecific, pthread_getspecific,
GLIBC_2_34);
#if OTHER_SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_34)
compat_symbol (libpthread, ___pthread_getspecific, __pthread_getspecific,
GLIBC_2_0);
compat_symbol (libpthread, ___pthread_getspecific, pthread_getspecific,
GLIBC_2_0);
#endif

View File

@@ -339,7 +339,6 @@ weak_extern (__pthread_rwlock_wrlock)
weak_extern (__pthread_rwlock_trywrlock) weak_extern (__pthread_rwlock_trywrlock)
weak_extern (__pthread_rwlock_unlock) weak_extern (__pthread_rwlock_unlock)
weak_extern (__pthread_setspecific) weak_extern (__pthread_setspecific)
weak_extern (__pthread_getspecific)
weak_extern (__pthread_initialize) weak_extern (__pthread_initialize)
weak_extern (__pthread_atfork) weak_extern (__pthread_atfork)
# else # else
@@ -358,7 +357,6 @@ weak_extern (__pthread_atfork)
# pragma weak __pthread_rwlock_trywrlock # pragma weak __pthread_rwlock_trywrlock
# pragma weak __pthread_rwlock_unlock # pragma weak __pthread_rwlock_unlock
# pragma weak __pthread_setspecific # pragma weak __pthread_setspecific
# pragma weak __pthread_getspecific
# pragma weak __pthread_initialize # pragma weak __pthread_initialize
# pragma weak __pthread_atfork # pragma weak __pthread_atfork
# endif # endif

View File

@@ -49,7 +49,6 @@ struct pthread_functions
int (*ptr___pthread_rwlock_rdlock) (pthread_rwlock_t *); int (*ptr___pthread_rwlock_rdlock) (pthread_rwlock_t *);
int (*ptr___pthread_rwlock_wrlock) (pthread_rwlock_t *); int (*ptr___pthread_rwlock_wrlock) (pthread_rwlock_t *);
int (*ptr___pthread_rwlock_unlock) (pthread_rwlock_t *); int (*ptr___pthread_rwlock_unlock) (pthread_rwlock_t *);
void *(*ptr___pthread_getspecific) (pthread_key_t);
int (*ptr___pthread_setspecific) (pthread_key_t, const void *); int (*ptr___pthread_setspecific) (pthread_key_t, const void *);
int (*ptr__nptl_setxid) (struct xid_command *); int (*ptr__nptl_setxid) (struct xid_command *);
}; };

View File

@@ -339,6 +339,7 @@ GLIBC_2.17 __profile_frequency F
GLIBC_2.17 __progname D 0x8 GLIBC_2.17 __progname D 0x8
GLIBC_2.17 __progname_full D 0x8 GLIBC_2.17 __progname_full D 0x8
GLIBC_2.17 __pthread_cleanup_routine F GLIBC_2.17 __pthread_cleanup_routine F
GLIBC_2.17 __pthread_getspecific F
GLIBC_2.17 __pthread_key_create F GLIBC_2.17 __pthread_key_create F
GLIBC_2.17 __pthread_once F GLIBC_2.17 __pthread_once F
GLIBC_2.17 __pthread_unwind_next F GLIBC_2.17 __pthread_unwind_next F
@@ -1451,6 +1452,7 @@ GLIBC_2.17 pthread_exit F
GLIBC_2.17 pthread_getaffinity_np F GLIBC_2.17 pthread_getaffinity_np F
GLIBC_2.17 pthread_getattr_np F GLIBC_2.17 pthread_getattr_np F
GLIBC_2.17 pthread_getschedparam F GLIBC_2.17 pthread_getschedparam F
GLIBC_2.17 pthread_getspecific F
GLIBC_2.17 pthread_key_create F GLIBC_2.17 pthread_key_create F
GLIBC_2.17 pthread_kill F GLIBC_2.17 pthread_kill F
GLIBC_2.17 pthread_mutex_consistent F GLIBC_2.17 pthread_mutex_consistent F
@@ -2187,9 +2189,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -3,7 +3,6 @@ GLIBC_2.17 _IO_ftrylockfile F
GLIBC_2.17 _IO_funlockfile F GLIBC_2.17 _IO_funlockfile F
GLIBC_2.17 __errno_location F GLIBC_2.17 __errno_location F
GLIBC_2.17 __h_errno_location F GLIBC_2.17 __h_errno_location F
GLIBC_2.17 __pthread_getspecific F
GLIBC_2.17 __pthread_mutex_destroy F GLIBC_2.17 __pthread_mutex_destroy F
GLIBC_2.17 __pthread_mutex_init F GLIBC_2.17 __pthread_mutex_init F
GLIBC_2.17 __pthread_mutex_lock F GLIBC_2.17 __pthread_mutex_lock F
@@ -58,7 +57,6 @@ GLIBC_2.17 pthread_detach F
GLIBC_2.17 pthread_getconcurrency F GLIBC_2.17 pthread_getconcurrency F
GLIBC_2.17 pthread_getcpuclockid F GLIBC_2.17 pthread_getcpuclockid F
GLIBC_2.17 pthread_getname_np F GLIBC_2.17 pthread_getname_np F
GLIBC_2.17 pthread_getspecific F
GLIBC_2.17 pthread_join F GLIBC_2.17 pthread_join F
GLIBC_2.17 pthread_key_delete F GLIBC_2.17 pthread_key_delete F
GLIBC_2.17 pthread_kill_other_threads_np F GLIBC_2.17 pthread_kill_other_threads_np F

View File

@@ -188,6 +188,7 @@ GLIBC_2.0 __printf_fp F
GLIBC_2.0 __profile_frequency F GLIBC_2.0 __profile_frequency F
GLIBC_2.0 __progname D 0x8 GLIBC_2.0 __progname D 0x8
GLIBC_2.0 __progname_full D 0x8 GLIBC_2.0 __progname_full D 0x8
GLIBC_2.0 __pthread_getspecific F
GLIBC_2.0 __pthread_key_create F GLIBC_2.0 __pthread_key_create F
GLIBC_2.0 __pthread_once F GLIBC_2.0 __pthread_once F
GLIBC_2.0 __rcmd_errstr D 0x8 GLIBC_2.0 __rcmd_errstr D 0x8
@@ -889,6 +890,7 @@ GLIBC_2.0 pthread_condattr_init F
GLIBC_2.0 pthread_equal F GLIBC_2.0 pthread_equal F
GLIBC_2.0 pthread_exit F GLIBC_2.0 pthread_exit F
GLIBC_2.0 pthread_getschedparam F GLIBC_2.0 pthread_getschedparam F
GLIBC_2.0 pthread_getspecific F
GLIBC_2.0 pthread_key_create F GLIBC_2.0 pthread_key_create F
GLIBC_2.0 pthread_kill F GLIBC_2.0 pthread_kill F
GLIBC_2.0 pthread_mutex_destroy F GLIBC_2.0 pthread_mutex_destroy F
@@ -2275,9 +2277,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -3,7 +3,6 @@ GLIBC_2.0 _IO_ftrylockfile F
GLIBC_2.0 _IO_funlockfile F GLIBC_2.0 _IO_funlockfile F
GLIBC_2.0 __errno_location F GLIBC_2.0 __errno_location F
GLIBC_2.0 __h_errno_location F GLIBC_2.0 __h_errno_location F
GLIBC_2.0 __pthread_getspecific F
GLIBC_2.0 __pthread_mutex_destroy F GLIBC_2.0 __pthread_mutex_destroy F
GLIBC_2.0 __pthread_mutex_init F GLIBC_2.0 __pthread_mutex_init F
GLIBC_2.0 __pthread_mutex_lock F GLIBC_2.0 __pthread_mutex_lock F
@@ -24,7 +23,6 @@ GLIBC_2.0 pthread_cond_timedwait F
GLIBC_2.0 pthread_cond_wait F GLIBC_2.0 pthread_cond_wait F
GLIBC_2.0 pthread_create F GLIBC_2.0 pthread_create F
GLIBC_2.0 pthread_detach F GLIBC_2.0 pthread_detach F
GLIBC_2.0 pthread_getspecific F
GLIBC_2.0 pthread_join F GLIBC_2.0 pthread_join F
GLIBC_2.0 pthread_key_delete F GLIBC_2.0 pthread_key_delete F
GLIBC_2.0 pthread_kill_other_threads_np F GLIBC_2.0 pthread_kill_other_threads_np F

View File

@@ -328,6 +328,7 @@ GLIBC_2.32 __profile_frequency F
GLIBC_2.32 __progname D 0x4 GLIBC_2.32 __progname D 0x4
GLIBC_2.32 __progname_full D 0x4 GLIBC_2.32 __progname_full D 0x4
GLIBC_2.32 __pthread_cleanup_routine F GLIBC_2.32 __pthread_cleanup_routine F
GLIBC_2.32 __pthread_getspecific F
GLIBC_2.32 __pthread_key_create F GLIBC_2.32 __pthread_key_create F
GLIBC_2.32 __pthread_once F GLIBC_2.32 __pthread_once F
GLIBC_2.32 __pthread_unwind_next F GLIBC_2.32 __pthread_unwind_next F
@@ -1377,6 +1378,7 @@ GLIBC_2.32 pthread_exit F
GLIBC_2.32 pthread_getaffinity_np F GLIBC_2.32 pthread_getaffinity_np F
GLIBC_2.32 pthread_getattr_np F GLIBC_2.32 pthread_getattr_np F
GLIBC_2.32 pthread_getschedparam F GLIBC_2.32 pthread_getschedparam F
GLIBC_2.32 pthread_getspecific F
GLIBC_2.32 pthread_key_create F GLIBC_2.32 pthread_key_create F
GLIBC_2.32 pthread_kill F GLIBC_2.32 pthread_kill F
GLIBC_2.32 pthread_mutex_consistent F GLIBC_2.32 pthread_mutex_consistent F
@@ -1946,9 +1948,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -3,7 +3,6 @@ GLIBC_2.32 _IO_ftrylockfile F
GLIBC_2.32 _IO_funlockfile F GLIBC_2.32 _IO_funlockfile F
GLIBC_2.32 __errno_location F GLIBC_2.32 __errno_location F
GLIBC_2.32 __h_errno_location F GLIBC_2.32 __h_errno_location F
GLIBC_2.32 __pthread_getspecific F
GLIBC_2.32 __pthread_mutex_destroy F GLIBC_2.32 __pthread_mutex_destroy F
GLIBC_2.32 __pthread_mutex_init F GLIBC_2.32 __pthread_mutex_init F
GLIBC_2.32 __pthread_mutex_lock F GLIBC_2.32 __pthread_mutex_lock F
@@ -74,7 +73,6 @@ GLIBC_2.32 pthread_getattr_default_np F
GLIBC_2.32 pthread_getconcurrency F GLIBC_2.32 pthread_getconcurrency F
GLIBC_2.32 pthread_getcpuclockid F GLIBC_2.32 pthread_getcpuclockid F
GLIBC_2.32 pthread_getname_np F GLIBC_2.32 pthread_getname_np F
GLIBC_2.32 pthread_getspecific F
GLIBC_2.32 pthread_join F GLIBC_2.32 pthread_join F
GLIBC_2.32 pthread_key_delete F GLIBC_2.32 pthread_key_delete F
GLIBC_2.32 pthread_kill_other_threads_np F GLIBC_2.32 pthread_kill_other_threads_np F

View File

@@ -158,9 +158,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F
@@ -493,6 +495,7 @@ GLIBC_2.4 __profile_frequency F
GLIBC_2.4 __progname D 0x4 GLIBC_2.4 __progname D 0x4
GLIBC_2.4 __progname_full D 0x4 GLIBC_2.4 __progname_full D 0x4
GLIBC_2.4 __pthread_cleanup_routine F GLIBC_2.4 __pthread_cleanup_routine F
GLIBC_2.4 __pthread_getspecific F
GLIBC_2.4 __pthread_key_create F GLIBC_2.4 __pthread_key_create F
GLIBC_2.4 __pthread_once F GLIBC_2.4 __pthread_once F
GLIBC_2.4 __pthread_unwind_next F GLIBC_2.4 __pthread_unwind_next F
@@ -1552,6 +1555,7 @@ GLIBC_2.4 pthread_exit F
GLIBC_2.4 pthread_getaffinity_np F GLIBC_2.4 pthread_getaffinity_np F
GLIBC_2.4 pthread_getattr_np F GLIBC_2.4 pthread_getattr_np F
GLIBC_2.4 pthread_getschedparam F GLIBC_2.4 pthread_getschedparam F
GLIBC_2.4 pthread_getspecific F
GLIBC_2.4 pthread_key_create F GLIBC_2.4 pthread_key_create F
GLIBC_2.4 pthread_kill F GLIBC_2.4 pthread_kill F
GLIBC_2.4 pthread_mutex_consistent_np F GLIBC_2.4 pthread_mutex_consistent_np F

View File

@@ -37,7 +37,6 @@ GLIBC_2.4 _IO_ftrylockfile F
GLIBC_2.4 _IO_funlockfile F GLIBC_2.4 _IO_funlockfile F
GLIBC_2.4 __errno_location F GLIBC_2.4 __errno_location F
GLIBC_2.4 __h_errno_location F GLIBC_2.4 __h_errno_location F
GLIBC_2.4 __pthread_getspecific F
GLIBC_2.4 __pthread_mutex_destroy F GLIBC_2.4 __pthread_mutex_destroy F
GLIBC_2.4 __pthread_mutex_init F GLIBC_2.4 __pthread_mutex_init F
GLIBC_2.4 __pthread_mutex_lock F GLIBC_2.4 __pthread_mutex_lock F
@@ -91,7 +90,6 @@ GLIBC_2.4 pthread_create F
GLIBC_2.4 pthread_detach F GLIBC_2.4 pthread_detach F
GLIBC_2.4 pthread_getconcurrency F GLIBC_2.4 pthread_getconcurrency F
GLIBC_2.4 pthread_getcpuclockid F GLIBC_2.4 pthread_getcpuclockid F
GLIBC_2.4 pthread_getspecific F
GLIBC_2.4 pthread_join F GLIBC_2.4 pthread_join F
GLIBC_2.4 pthread_key_delete F GLIBC_2.4 pthread_key_delete F
GLIBC_2.4 pthread_kill_other_threads_np F GLIBC_2.4 pthread_kill_other_threads_np F

View File

@@ -155,9 +155,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F
@@ -490,6 +492,7 @@ GLIBC_2.4 __profile_frequency F
GLIBC_2.4 __progname D 0x4 GLIBC_2.4 __progname D 0x4
GLIBC_2.4 __progname_full D 0x4 GLIBC_2.4 __progname_full D 0x4
GLIBC_2.4 __pthread_cleanup_routine F GLIBC_2.4 __pthread_cleanup_routine F
GLIBC_2.4 __pthread_getspecific F
GLIBC_2.4 __pthread_key_create F GLIBC_2.4 __pthread_key_create F
GLIBC_2.4 __pthread_once F GLIBC_2.4 __pthread_once F
GLIBC_2.4 __pthread_unwind_next F GLIBC_2.4 __pthread_unwind_next F
@@ -1549,6 +1552,7 @@ GLIBC_2.4 pthread_exit F
GLIBC_2.4 pthread_getaffinity_np F GLIBC_2.4 pthread_getaffinity_np F
GLIBC_2.4 pthread_getattr_np F GLIBC_2.4 pthread_getattr_np F
GLIBC_2.4 pthread_getschedparam F GLIBC_2.4 pthread_getschedparam F
GLIBC_2.4 pthread_getspecific F
GLIBC_2.4 pthread_key_create F GLIBC_2.4 pthread_key_create F
GLIBC_2.4 pthread_kill F GLIBC_2.4 pthread_kill F
GLIBC_2.4 pthread_mutex_consistent_np F GLIBC_2.4 pthread_mutex_consistent_np F

View File

@@ -37,7 +37,6 @@ GLIBC_2.4 _IO_ftrylockfile F
GLIBC_2.4 _IO_funlockfile F GLIBC_2.4 _IO_funlockfile F
GLIBC_2.4 __errno_location F GLIBC_2.4 __errno_location F
GLIBC_2.4 __h_errno_location F GLIBC_2.4 __h_errno_location F
GLIBC_2.4 __pthread_getspecific F
GLIBC_2.4 __pthread_mutex_destroy F GLIBC_2.4 __pthread_mutex_destroy F
GLIBC_2.4 __pthread_mutex_init F GLIBC_2.4 __pthread_mutex_init F
GLIBC_2.4 __pthread_mutex_lock F GLIBC_2.4 __pthread_mutex_lock F
@@ -91,7 +90,6 @@ GLIBC_2.4 pthread_create F
GLIBC_2.4 pthread_detach F GLIBC_2.4 pthread_detach F
GLIBC_2.4 pthread_getconcurrency F GLIBC_2.4 pthread_getconcurrency F
GLIBC_2.4 pthread_getcpuclockid F GLIBC_2.4 pthread_getcpuclockid F
GLIBC_2.4 pthread_getspecific F
GLIBC_2.4 pthread_join F GLIBC_2.4 pthread_join F
GLIBC_2.4 pthread_key_delete F GLIBC_2.4 pthread_key_delete F
GLIBC_2.4 pthread_kill_other_threads_np F GLIBC_2.4 pthread_kill_other_threads_np F

View File

@@ -332,6 +332,7 @@ GLIBC_2.29 __profile_frequency F
GLIBC_2.29 __progname D 0x4 GLIBC_2.29 __progname D 0x4
GLIBC_2.29 __progname_full D 0x4 GLIBC_2.29 __progname_full D 0x4
GLIBC_2.29 __pthread_cleanup_routine F GLIBC_2.29 __pthread_cleanup_routine F
GLIBC_2.29 __pthread_getspecific F
GLIBC_2.29 __pthread_key_create F GLIBC_2.29 __pthread_key_create F
GLIBC_2.29 __pthread_once F GLIBC_2.29 __pthread_once F
GLIBC_2.29 __pthread_unwind_next F GLIBC_2.29 __pthread_unwind_next F
@@ -1438,6 +1439,7 @@ GLIBC_2.29 pthread_exit F
GLIBC_2.29 pthread_getaffinity_np F GLIBC_2.29 pthread_getaffinity_np F
GLIBC_2.29 pthread_getattr_np F GLIBC_2.29 pthread_getattr_np F
GLIBC_2.29 pthread_getschedparam F GLIBC_2.29 pthread_getschedparam F
GLIBC_2.29 pthread_getspecific F
GLIBC_2.29 pthread_key_create F GLIBC_2.29 pthread_key_create F
GLIBC_2.29 pthread_kill F GLIBC_2.29 pthread_kill F
GLIBC_2.29 pthread_mutex_consistent F GLIBC_2.29 pthread_mutex_consistent F
@@ -2130,9 +2132,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -3,7 +3,6 @@ GLIBC_2.29 _IO_ftrylockfile F
GLIBC_2.29 _IO_funlockfile F GLIBC_2.29 _IO_funlockfile F
GLIBC_2.29 __errno_location F GLIBC_2.29 __errno_location F
GLIBC_2.29 __h_errno_location F GLIBC_2.29 __h_errno_location F
GLIBC_2.29 __pthread_getspecific F
GLIBC_2.29 __pthread_mutex_destroy F GLIBC_2.29 __pthread_mutex_destroy F
GLIBC_2.29 __pthread_mutex_init F GLIBC_2.29 __pthread_mutex_init F
GLIBC_2.29 __pthread_mutex_lock F GLIBC_2.29 __pthread_mutex_lock F
@@ -72,7 +71,6 @@ GLIBC_2.29 pthread_getattr_default_np F
GLIBC_2.29 pthread_getconcurrency F GLIBC_2.29 pthread_getconcurrency F
GLIBC_2.29 pthread_getcpuclockid F GLIBC_2.29 pthread_getcpuclockid F
GLIBC_2.29 pthread_getname_np F GLIBC_2.29 pthread_getname_np F
GLIBC_2.29 pthread_getspecific F
GLIBC_2.29 pthread_join F GLIBC_2.29 pthread_join F
GLIBC_2.29 pthread_key_delete F GLIBC_2.29 pthread_key_delete F
GLIBC_2.29 pthread_kill_other_threads_np F GLIBC_2.29 pthread_kill_other_threads_np F

View File

@@ -356,6 +356,7 @@ GLIBC_2.2 __printf_fp F
GLIBC_2.2 __profile_frequency F GLIBC_2.2 __profile_frequency F
GLIBC_2.2 __progname D 0x4 GLIBC_2.2 __progname D 0x4
GLIBC_2.2 __progname_full D 0x4 GLIBC_2.2 __progname_full D 0x4
GLIBC_2.2 __pthread_getspecific F
GLIBC_2.2 __pthread_key_create F GLIBC_2.2 __pthread_key_create F
GLIBC_2.2 __pthread_once F GLIBC_2.2 __pthread_once F
GLIBC_2.2 __pwrite64 F GLIBC_2.2 __pwrite64 F
@@ -1273,6 +1274,7 @@ GLIBC_2.2 pthread_condattr_init F
GLIBC_2.2 pthread_equal F GLIBC_2.2 pthread_equal F
GLIBC_2.2 pthread_exit F GLIBC_2.2 pthread_exit F
GLIBC_2.2 pthread_getschedparam F GLIBC_2.2 pthread_getschedparam F
GLIBC_2.2 pthread_getspecific F
GLIBC_2.2 pthread_key_create F GLIBC_2.2 pthread_key_create F
GLIBC_2.2 pthread_kill F GLIBC_2.2 pthread_kill F
GLIBC_2.2 pthread_mutex_destroy F GLIBC_2.2 pthread_mutex_destroy F
@@ -2088,9 +2090,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -10,7 +10,6 @@ GLIBC_2.2 _IO_ftrylockfile F
GLIBC_2.2 _IO_funlockfile F GLIBC_2.2 _IO_funlockfile F
GLIBC_2.2 __errno_location F GLIBC_2.2 __errno_location F
GLIBC_2.2 __h_errno_location F GLIBC_2.2 __h_errno_location F
GLIBC_2.2 __pthread_getspecific F
GLIBC_2.2 __pthread_mutex_destroy F GLIBC_2.2 __pthread_mutex_destroy F
GLIBC_2.2 __pthread_mutex_init F GLIBC_2.2 __pthread_mutex_init F
GLIBC_2.2 __pthread_mutex_lock F GLIBC_2.2 __pthread_mutex_lock F
@@ -57,7 +56,6 @@ GLIBC_2.2 pthread_create F
GLIBC_2.2 pthread_detach F GLIBC_2.2 pthread_detach F
GLIBC_2.2 pthread_getconcurrency F GLIBC_2.2 pthread_getconcurrency F
GLIBC_2.2 pthread_getcpuclockid F GLIBC_2.2 pthread_getcpuclockid F
GLIBC_2.2 pthread_getspecific F
GLIBC_2.2 pthread_join F GLIBC_2.2 pthread_join F
GLIBC_2.2 pthread_key_delete F GLIBC_2.2 pthread_key_delete F
GLIBC_2.2 pthread_kill_other_threads_np F GLIBC_2.2 pthread_kill_other_threads_np F

View File

@@ -185,6 +185,7 @@ GLIBC_2.0 __printf_fp F
GLIBC_2.0 __profile_frequency F GLIBC_2.0 __profile_frequency F
GLIBC_2.0 __progname D 0x4 GLIBC_2.0 __progname D 0x4
GLIBC_2.0 __progname_full D 0x4 GLIBC_2.0 __progname_full D 0x4
GLIBC_2.0 __pthread_getspecific F
GLIBC_2.0 __pthread_key_create F GLIBC_2.0 __pthread_key_create F
GLIBC_2.0 __pthread_once F GLIBC_2.0 __pthread_once F
GLIBC_2.0 __rcmd_errstr D 0x4 GLIBC_2.0 __rcmd_errstr D 0x4
@@ -866,6 +867,7 @@ GLIBC_2.0 pthread_condattr_init F
GLIBC_2.0 pthread_equal F GLIBC_2.0 pthread_equal F
GLIBC_2.0 pthread_exit F GLIBC_2.0 pthread_exit F
GLIBC_2.0 pthread_getschedparam F GLIBC_2.0 pthread_getschedparam F
GLIBC_2.0 pthread_getspecific F
GLIBC_2.0 pthread_key_create F GLIBC_2.0 pthread_key_create F
GLIBC_2.0 pthread_kill F GLIBC_2.0 pthread_kill F
GLIBC_2.0 pthread_mutex_destroy F GLIBC_2.0 pthread_mutex_destroy F
@@ -2265,9 +2267,11 @@ GLIBC_2.33 stat64 F
GLIBC_2.34 __isnanf128 F GLIBC_2.34 __isnanf128 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -3,7 +3,6 @@ GLIBC_2.0 _IO_ftrylockfile F
GLIBC_2.0 _IO_funlockfile F GLIBC_2.0 _IO_funlockfile F
GLIBC_2.0 __errno_location F GLIBC_2.0 __errno_location F
GLIBC_2.0 __h_errno_location F GLIBC_2.0 __h_errno_location F
GLIBC_2.0 __pthread_getspecific F
GLIBC_2.0 __pthread_mutex_destroy F GLIBC_2.0 __pthread_mutex_destroy F
GLIBC_2.0 __pthread_mutex_init F GLIBC_2.0 __pthread_mutex_init F
GLIBC_2.0 __pthread_mutex_lock F GLIBC_2.0 __pthread_mutex_lock F
@@ -24,7 +23,6 @@ GLIBC_2.0 pthread_cond_timedwait F
GLIBC_2.0 pthread_cond_wait F GLIBC_2.0 pthread_cond_wait F
GLIBC_2.0 pthread_create F GLIBC_2.0 pthread_create F
GLIBC_2.0 pthread_detach F GLIBC_2.0 pthread_detach F
GLIBC_2.0 pthread_getspecific F
GLIBC_2.0 pthread_join F GLIBC_2.0 pthread_join F
GLIBC_2.0 pthread_key_delete F GLIBC_2.0 pthread_key_delete F
GLIBC_2.0 pthread_kill_other_threads_np F GLIBC_2.0 pthread_kill_other_threads_np F

View File

@@ -360,6 +360,7 @@ GLIBC_2.2 __printf_fp F
GLIBC_2.2 __profile_frequency F GLIBC_2.2 __profile_frequency F
GLIBC_2.2 __progname D 0x8 GLIBC_2.2 __progname D 0x8
GLIBC_2.2 __progname_full D 0x8 GLIBC_2.2 __progname_full D 0x8
GLIBC_2.2 __pthread_getspecific F
GLIBC_2.2 __pthread_key_create F GLIBC_2.2 __pthread_key_create F
GLIBC_2.2 __pthread_once F GLIBC_2.2 __pthread_once F
GLIBC_2.2 __pwrite64 F GLIBC_2.2 __pwrite64 F
@@ -1294,6 +1295,7 @@ GLIBC_2.2 pthread_condattr_init F
GLIBC_2.2 pthread_equal F GLIBC_2.2 pthread_equal F
GLIBC_2.2 pthread_exit F GLIBC_2.2 pthread_exit F
GLIBC_2.2 pthread_getschedparam F GLIBC_2.2 pthread_getschedparam F
GLIBC_2.2 pthread_getspecific F
GLIBC_2.2 pthread_key_create F GLIBC_2.2 pthread_key_create F
GLIBC_2.2 pthread_kill F GLIBC_2.2 pthread_kill F
GLIBC_2.2 pthread_mutex_destroy F GLIBC_2.2 pthread_mutex_destroy F
@@ -2122,9 +2124,11 @@ GLIBC_2.33 stat64 F
GLIBC_2.34 __isnanf128 F GLIBC_2.34 __isnanf128 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -10,7 +10,6 @@ GLIBC_2.2 _IO_ftrylockfile F
GLIBC_2.2 _IO_funlockfile F GLIBC_2.2 _IO_funlockfile F
GLIBC_2.2 __errno_location F GLIBC_2.2 __errno_location F
GLIBC_2.2 __h_errno_location F GLIBC_2.2 __h_errno_location F
GLIBC_2.2 __pthread_getspecific F
GLIBC_2.2 __pthread_mutex_destroy F GLIBC_2.2 __pthread_mutex_destroy F
GLIBC_2.2 __pthread_mutex_init F GLIBC_2.2 __pthread_mutex_init F
GLIBC_2.2 __pthread_mutex_lock F GLIBC_2.2 __pthread_mutex_lock F
@@ -57,7 +56,6 @@ GLIBC_2.2 pthread_create F
GLIBC_2.2 pthread_detach F GLIBC_2.2 pthread_detach F
GLIBC_2.2 pthread_getconcurrency F GLIBC_2.2 pthread_getconcurrency F
GLIBC_2.2 pthread_getcpuclockid F GLIBC_2.2 pthread_getcpuclockid F
GLIBC_2.2 pthread_getspecific F
GLIBC_2.2 pthread_join F GLIBC_2.2 pthread_join F
GLIBC_2.2 pthread_key_delete F GLIBC_2.2 pthread_key_delete F
GLIBC_2.2 pthread_kill_other_threads_np F GLIBC_2.2 pthread_kill_other_threads_np F

View File

@@ -159,9 +159,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F
@@ -479,6 +481,7 @@ GLIBC_2.4 __profile_frequency F
GLIBC_2.4 __progname D 0x4 GLIBC_2.4 __progname D 0x4
GLIBC_2.4 __progname_full D 0x4 GLIBC_2.4 __progname_full D 0x4
GLIBC_2.4 __pthread_cleanup_routine F GLIBC_2.4 __pthread_cleanup_routine F
GLIBC_2.4 __pthread_getspecific F
GLIBC_2.4 __pthread_key_create F GLIBC_2.4 __pthread_key_create F
GLIBC_2.4 __pthread_once F GLIBC_2.4 __pthread_once F
GLIBC_2.4 __pthread_unwind_next F GLIBC_2.4 __pthread_unwind_next F
@@ -1532,6 +1535,7 @@ GLIBC_2.4 pthread_exit F
GLIBC_2.4 pthread_getaffinity_np F GLIBC_2.4 pthread_getaffinity_np F
GLIBC_2.4 pthread_getattr_np F GLIBC_2.4 pthread_getattr_np F
GLIBC_2.4 pthread_getschedparam F GLIBC_2.4 pthread_getschedparam F
GLIBC_2.4 pthread_getspecific F
GLIBC_2.4 pthread_key_create F GLIBC_2.4 pthread_key_create F
GLIBC_2.4 pthread_kill F GLIBC_2.4 pthread_kill F
GLIBC_2.4 pthread_mutex_consistent_np F GLIBC_2.4 pthread_mutex_consistent_np F

View File

@@ -37,7 +37,6 @@ GLIBC_2.4 _IO_ftrylockfile F
GLIBC_2.4 _IO_funlockfile F GLIBC_2.4 _IO_funlockfile F
GLIBC_2.4 __errno_location F GLIBC_2.4 __errno_location F
GLIBC_2.4 __h_errno_location F GLIBC_2.4 __h_errno_location F
GLIBC_2.4 __pthread_getspecific F
GLIBC_2.4 __pthread_mutex_destroy F GLIBC_2.4 __pthread_mutex_destroy F
GLIBC_2.4 __pthread_mutex_init F GLIBC_2.4 __pthread_mutex_init F
GLIBC_2.4 __pthread_mutex_lock F GLIBC_2.4 __pthread_mutex_lock F
@@ -91,7 +90,6 @@ GLIBC_2.4 pthread_create F
GLIBC_2.4 pthread_detach F GLIBC_2.4 pthread_detach F
GLIBC_2.4 pthread_getconcurrency F GLIBC_2.4 pthread_getconcurrency F
GLIBC_2.4 pthread_getcpuclockid F GLIBC_2.4 pthread_getcpuclockid F
GLIBC_2.4 pthread_getspecific F
GLIBC_2.4 pthread_join F GLIBC_2.4 pthread_join F
GLIBC_2.4 pthread_key_delete F GLIBC_2.4 pthread_key_delete F
GLIBC_2.4 pthread_kill_other_threads_np F GLIBC_2.4 pthread_kill_other_threads_np F

View File

@@ -185,6 +185,7 @@ GLIBC_2.0 __printf_fp F
GLIBC_2.0 __profile_frequency F GLIBC_2.0 __profile_frequency F
GLIBC_2.0 __progname D 0x4 GLIBC_2.0 __progname D 0x4
GLIBC_2.0 __progname_full D 0x4 GLIBC_2.0 __progname_full D 0x4
GLIBC_2.0 __pthread_getspecific F
GLIBC_2.0 __pthread_key_create F GLIBC_2.0 __pthread_key_create F
GLIBC_2.0 __pthread_once F GLIBC_2.0 __pthread_once F
GLIBC_2.0 __rcmd_errstr D 0x4 GLIBC_2.0 __rcmd_errstr D 0x4
@@ -865,6 +866,7 @@ GLIBC_2.0 pthread_condattr_init F
GLIBC_2.0 pthread_equal F GLIBC_2.0 pthread_equal F
GLIBC_2.0 pthread_exit F GLIBC_2.0 pthread_exit F
GLIBC_2.0 pthread_getschedparam F GLIBC_2.0 pthread_getschedparam F
GLIBC_2.0 pthread_getspecific F
GLIBC_2.0 pthread_key_create F GLIBC_2.0 pthread_key_create F
GLIBC_2.0 pthread_kill F GLIBC_2.0 pthread_kill F
GLIBC_2.0 pthread_mutex_destroy F GLIBC_2.0 pthread_mutex_destroy F
@@ -2208,9 +2210,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -3,7 +3,6 @@ GLIBC_2.0 _IO_ftrylockfile F
GLIBC_2.0 _IO_funlockfile F GLIBC_2.0 _IO_funlockfile F
GLIBC_2.0 __errno_location F GLIBC_2.0 __errno_location F
GLIBC_2.0 __h_errno_location F GLIBC_2.0 __h_errno_location F
GLIBC_2.0 __pthread_getspecific F
GLIBC_2.0 __pthread_mutex_destroy F GLIBC_2.0 __pthread_mutex_destroy F
GLIBC_2.0 __pthread_mutex_init F GLIBC_2.0 __pthread_mutex_init F
GLIBC_2.0 __pthread_mutex_lock F GLIBC_2.0 __pthread_mutex_lock F
@@ -24,7 +23,6 @@ GLIBC_2.0 pthread_cond_timedwait F
GLIBC_2.0 pthread_cond_wait F GLIBC_2.0 pthread_cond_wait F
GLIBC_2.0 pthread_create F GLIBC_2.0 pthread_create F
GLIBC_2.0 pthread_detach F GLIBC_2.0 pthread_detach F
GLIBC_2.0 pthread_getspecific F
GLIBC_2.0 pthread_join F GLIBC_2.0 pthread_join F
GLIBC_2.0 pthread_key_delete F GLIBC_2.0 pthread_key_delete F
GLIBC_2.0 pthread_kill_other_threads_np F GLIBC_2.0 pthread_kill_other_threads_np F

View File

@@ -340,6 +340,7 @@ GLIBC_2.18 __profile_frequency F
GLIBC_2.18 __progname D 0x4 GLIBC_2.18 __progname D 0x4
GLIBC_2.18 __progname_full D 0x4 GLIBC_2.18 __progname_full D 0x4
GLIBC_2.18 __pthread_cleanup_routine F GLIBC_2.18 __pthread_cleanup_routine F
GLIBC_2.18 __pthread_getspecific F
GLIBC_2.18 __pthread_key_create F GLIBC_2.18 __pthread_key_create F
GLIBC_2.18 __pthread_once F GLIBC_2.18 __pthread_once F
GLIBC_2.18 __pthread_unwind_next F GLIBC_2.18 __pthread_unwind_next F
@@ -1453,6 +1454,7 @@ GLIBC_2.18 pthread_exit F
GLIBC_2.18 pthread_getaffinity_np F GLIBC_2.18 pthread_getaffinity_np F
GLIBC_2.18 pthread_getattr_np F GLIBC_2.18 pthread_getattr_np F
GLIBC_2.18 pthread_getschedparam F GLIBC_2.18 pthread_getschedparam F
GLIBC_2.18 pthread_getspecific F
GLIBC_2.18 pthread_key_create F GLIBC_2.18 pthread_key_create F
GLIBC_2.18 pthread_kill F GLIBC_2.18 pthread_kill F
GLIBC_2.18 pthread_mutex_consistent F GLIBC_2.18 pthread_mutex_consistent F
@@ -2181,9 +2183,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -3,7 +3,6 @@ GLIBC_2.18 _IO_ftrylockfile F
GLIBC_2.18 _IO_funlockfile F GLIBC_2.18 _IO_funlockfile F
GLIBC_2.18 __errno_location F GLIBC_2.18 __errno_location F
GLIBC_2.18 __h_errno_location F GLIBC_2.18 __h_errno_location F
GLIBC_2.18 __pthread_getspecific F
GLIBC_2.18 __pthread_mutex_destroy F GLIBC_2.18 __pthread_mutex_destroy F
GLIBC_2.18 __pthread_mutex_init F GLIBC_2.18 __pthread_mutex_init F
GLIBC_2.18 __pthread_mutex_lock F GLIBC_2.18 __pthread_mutex_lock F
@@ -59,7 +58,6 @@ GLIBC_2.18 pthread_getattr_default_np F
GLIBC_2.18 pthread_getconcurrency F GLIBC_2.18 pthread_getconcurrency F
GLIBC_2.18 pthread_getcpuclockid F GLIBC_2.18 pthread_getcpuclockid F
GLIBC_2.18 pthread_getname_np F GLIBC_2.18 pthread_getname_np F
GLIBC_2.18 pthread_getspecific F
GLIBC_2.18 pthread_join F GLIBC_2.18 pthread_join F
GLIBC_2.18 pthread_key_delete F GLIBC_2.18 pthread_key_delete F
GLIBC_2.18 pthread_kill_other_threads_np F GLIBC_2.18 pthread_kill_other_threads_np F

View File

@@ -340,6 +340,7 @@ GLIBC_2.18 __profile_frequency F
GLIBC_2.18 __progname D 0x4 GLIBC_2.18 __progname D 0x4
GLIBC_2.18 __progname_full D 0x4 GLIBC_2.18 __progname_full D 0x4
GLIBC_2.18 __pthread_cleanup_routine F GLIBC_2.18 __pthread_cleanup_routine F
GLIBC_2.18 __pthread_getspecific F
GLIBC_2.18 __pthread_key_create F GLIBC_2.18 __pthread_key_create F
GLIBC_2.18 __pthread_once F GLIBC_2.18 __pthread_once F
GLIBC_2.18 __pthread_unwind_next F GLIBC_2.18 __pthread_unwind_next F
@@ -1453,6 +1454,7 @@ GLIBC_2.18 pthread_exit F
GLIBC_2.18 pthread_getaffinity_np F GLIBC_2.18 pthread_getaffinity_np F
GLIBC_2.18 pthread_getattr_np F GLIBC_2.18 pthread_getattr_np F
GLIBC_2.18 pthread_getschedparam F GLIBC_2.18 pthread_getschedparam F
GLIBC_2.18 pthread_getspecific F
GLIBC_2.18 pthread_key_create F GLIBC_2.18 pthread_key_create F
GLIBC_2.18 pthread_kill F GLIBC_2.18 pthread_kill F
GLIBC_2.18 pthread_mutex_consistent F GLIBC_2.18 pthread_mutex_consistent F
@@ -2178,9 +2180,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -3,7 +3,6 @@ GLIBC_2.18 _IO_ftrylockfile F
GLIBC_2.18 _IO_funlockfile F GLIBC_2.18 _IO_funlockfile F
GLIBC_2.18 __errno_location F GLIBC_2.18 __errno_location F
GLIBC_2.18 __h_errno_location F GLIBC_2.18 __h_errno_location F
GLIBC_2.18 __pthread_getspecific F
GLIBC_2.18 __pthread_mutex_destroy F GLIBC_2.18 __pthread_mutex_destroy F
GLIBC_2.18 __pthread_mutex_init F GLIBC_2.18 __pthread_mutex_init F
GLIBC_2.18 __pthread_mutex_lock F GLIBC_2.18 __pthread_mutex_lock F
@@ -59,7 +58,6 @@ GLIBC_2.18 pthread_getattr_default_np F
GLIBC_2.18 pthread_getconcurrency F GLIBC_2.18 pthread_getconcurrency F
GLIBC_2.18 pthread_getcpuclockid F GLIBC_2.18 pthread_getcpuclockid F
GLIBC_2.18 pthread_getname_np F GLIBC_2.18 pthread_getname_np F
GLIBC_2.18 pthread_getspecific F
GLIBC_2.18 pthread_join F GLIBC_2.18 pthread_join F
GLIBC_2.18 pthread_key_delete F GLIBC_2.18 pthread_key_delete F
GLIBC_2.18 pthread_kill_other_threads_np F GLIBC_2.18 pthread_kill_other_threads_np F

View File

@@ -183,6 +183,7 @@ GLIBC_2.0 __printf_fp F
GLIBC_2.0 __profile_frequency F GLIBC_2.0 __profile_frequency F
GLIBC_2.0 __progname D 0x4 GLIBC_2.0 __progname D 0x4
GLIBC_2.0 __progname_full D 0x4 GLIBC_2.0 __progname_full D 0x4
GLIBC_2.0 __pthread_getspecific F
GLIBC_2.0 __pthread_key_create F GLIBC_2.0 __pthread_key_create F
GLIBC_2.0 __pthread_once F GLIBC_2.0 __pthread_once F
GLIBC_2.0 __rcmd_errstr D 0x4 GLIBC_2.0 __rcmd_errstr D 0x4
@@ -862,6 +863,7 @@ GLIBC_2.0 pthread_condattr_init F
GLIBC_2.0 pthread_equal F GLIBC_2.0 pthread_equal F
GLIBC_2.0 pthread_exit F GLIBC_2.0 pthread_exit F
GLIBC_2.0 pthread_getschedparam F GLIBC_2.0 pthread_getschedparam F
GLIBC_2.0 pthread_getspecific F
GLIBC_2.0 pthread_key_create F GLIBC_2.0 pthread_key_create F
GLIBC_2.0 pthread_kill F GLIBC_2.0 pthread_kill F
GLIBC_2.0 pthread_mutex_destroy F GLIBC_2.0 pthread_mutex_destroy F
@@ -2171,9 +2173,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -3,7 +3,6 @@ GLIBC_2.0 _IO_ftrylockfile F
GLIBC_2.0 _IO_funlockfile F GLIBC_2.0 _IO_funlockfile F
GLIBC_2.0 __errno_location F GLIBC_2.0 __errno_location F
GLIBC_2.0 __h_errno_location F GLIBC_2.0 __h_errno_location F
GLIBC_2.0 __pthread_getspecific F
GLIBC_2.0 __pthread_mutex_destroy F GLIBC_2.0 __pthread_mutex_destroy F
GLIBC_2.0 __pthread_mutex_init F GLIBC_2.0 __pthread_mutex_init F
GLIBC_2.0 __pthread_mutex_lock F GLIBC_2.0 __pthread_mutex_lock F
@@ -24,7 +23,6 @@ GLIBC_2.0 pthread_cond_timedwait F
GLIBC_2.0 pthread_cond_wait F GLIBC_2.0 pthread_cond_wait F
GLIBC_2.0 pthread_create F GLIBC_2.0 pthread_create F
GLIBC_2.0 pthread_detach F GLIBC_2.0 pthread_detach F
GLIBC_2.0 pthread_getspecific F
GLIBC_2.0 pthread_join F GLIBC_2.0 pthread_join F
GLIBC_2.0 pthread_key_delete F GLIBC_2.0 pthread_key_delete F
GLIBC_2.0 pthread_kill_other_threads_np F GLIBC_2.0 pthread_kill_other_threads_np F

View File

@@ -183,6 +183,7 @@ GLIBC_2.0 __printf_fp F
GLIBC_2.0 __profile_frequency F GLIBC_2.0 __profile_frequency F
GLIBC_2.0 __progname D 0x4 GLIBC_2.0 __progname D 0x4
GLIBC_2.0 __progname_full D 0x4 GLIBC_2.0 __progname_full D 0x4
GLIBC_2.0 __pthread_getspecific F
GLIBC_2.0 __pthread_key_create F GLIBC_2.0 __pthread_key_create F
GLIBC_2.0 __pthread_once F GLIBC_2.0 __pthread_once F
GLIBC_2.0 __rcmd_errstr D 0x4 GLIBC_2.0 __rcmd_errstr D 0x4
@@ -862,6 +863,7 @@ GLIBC_2.0 pthread_condattr_init F
GLIBC_2.0 pthread_equal F GLIBC_2.0 pthread_equal F
GLIBC_2.0 pthread_exit F GLIBC_2.0 pthread_exit F
GLIBC_2.0 pthread_getschedparam F GLIBC_2.0 pthread_getschedparam F
GLIBC_2.0 pthread_getspecific F
GLIBC_2.0 pthread_key_create F GLIBC_2.0 pthread_key_create F
GLIBC_2.0 pthread_kill F GLIBC_2.0 pthread_kill F
GLIBC_2.0 pthread_mutex_destroy F GLIBC_2.0 pthread_mutex_destroy F
@@ -2169,9 +2171,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -3,7 +3,6 @@ GLIBC_2.0 _IO_ftrylockfile F
GLIBC_2.0 _IO_funlockfile F GLIBC_2.0 _IO_funlockfile F
GLIBC_2.0 __errno_location F GLIBC_2.0 __errno_location F
GLIBC_2.0 __h_errno_location F GLIBC_2.0 __h_errno_location F
GLIBC_2.0 __pthread_getspecific F
GLIBC_2.0 __pthread_mutex_destroy F GLIBC_2.0 __pthread_mutex_destroy F
GLIBC_2.0 __pthread_mutex_init F GLIBC_2.0 __pthread_mutex_init F
GLIBC_2.0 __pthread_mutex_lock F GLIBC_2.0 __pthread_mutex_lock F
@@ -24,7 +23,6 @@ GLIBC_2.0 pthread_cond_timedwait F
GLIBC_2.0 pthread_cond_wait F GLIBC_2.0 pthread_cond_wait F
GLIBC_2.0 pthread_create F GLIBC_2.0 pthread_create F
GLIBC_2.0 pthread_detach F GLIBC_2.0 pthread_detach F
GLIBC_2.0 pthread_getspecific F
GLIBC_2.0 pthread_join F GLIBC_2.0 pthread_join F
GLIBC_2.0 pthread_key_delete F GLIBC_2.0 pthread_key_delete F
GLIBC_2.0 pthread_kill_other_threads_np F GLIBC_2.0 pthread_kill_other_threads_np F

View File

@@ -183,6 +183,7 @@ GLIBC_2.0 __printf_fp F
GLIBC_2.0 __profile_frequency F GLIBC_2.0 __profile_frequency F
GLIBC_2.0 __progname D 0x4 GLIBC_2.0 __progname D 0x4
GLIBC_2.0 __progname_full D 0x4 GLIBC_2.0 __progname_full D 0x4
GLIBC_2.0 __pthread_getspecific F
GLIBC_2.0 __pthread_key_create F GLIBC_2.0 __pthread_key_create F
GLIBC_2.0 __pthread_once F GLIBC_2.0 __pthread_once F
GLIBC_2.0 __rcmd_errstr D 0x4 GLIBC_2.0 __rcmd_errstr D 0x4
@@ -862,6 +863,7 @@ GLIBC_2.0 pthread_condattr_init F
GLIBC_2.0 pthread_equal F GLIBC_2.0 pthread_equal F
GLIBC_2.0 pthread_exit F GLIBC_2.0 pthread_exit F
GLIBC_2.0 pthread_getschedparam F GLIBC_2.0 pthread_getschedparam F
GLIBC_2.0 pthread_getspecific F
GLIBC_2.0 pthread_key_create F GLIBC_2.0 pthread_key_create F
GLIBC_2.0 pthread_kill F GLIBC_2.0 pthread_kill F
GLIBC_2.0 pthread_mutex_destroy F GLIBC_2.0 pthread_mutex_destroy F
@@ -2177,9 +2179,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -183,6 +183,7 @@ GLIBC_2.0 __printf_fp F
GLIBC_2.0 __profile_frequency F GLIBC_2.0 __profile_frequency F
GLIBC_2.0 __progname D 0x8 GLIBC_2.0 __progname D 0x8
GLIBC_2.0 __progname_full D 0x8 GLIBC_2.0 __progname_full D 0x8
GLIBC_2.0 __pthread_getspecific F
GLIBC_2.0 __pthread_key_create F GLIBC_2.0 __pthread_key_create F
GLIBC_2.0 __pthread_once F GLIBC_2.0 __pthread_once F
GLIBC_2.0 __rcmd_errstr D 0x8 GLIBC_2.0 __rcmd_errstr D 0x8
@@ -860,6 +861,7 @@ GLIBC_2.0 pthread_condattr_init F
GLIBC_2.0 pthread_equal F GLIBC_2.0 pthread_equal F
GLIBC_2.0 pthread_exit F GLIBC_2.0 pthread_exit F
GLIBC_2.0 pthread_getschedparam F GLIBC_2.0 pthread_getschedparam F
GLIBC_2.0 pthread_getspecific F
GLIBC_2.0 pthread_key_create F GLIBC_2.0 pthread_key_create F
GLIBC_2.0 pthread_kill F GLIBC_2.0 pthread_kill F
GLIBC_2.0 pthread_mutex_destroy F GLIBC_2.0 pthread_mutex_destroy F
@@ -2171,9 +2173,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -377,6 +377,7 @@ GLIBC_2.21 __profile_frequency F
GLIBC_2.21 __progname D 0x4 GLIBC_2.21 __progname D 0x4
GLIBC_2.21 __progname_full D 0x4 GLIBC_2.21 __progname_full D 0x4
GLIBC_2.21 __pthread_cleanup_routine F GLIBC_2.21 __pthread_cleanup_routine F
GLIBC_2.21 __pthread_getspecific F
GLIBC_2.21 __pthread_key_create F GLIBC_2.21 __pthread_key_create F
GLIBC_2.21 __pthread_once F GLIBC_2.21 __pthread_once F
GLIBC_2.21 __pthread_unwind_next F GLIBC_2.21 __pthread_unwind_next F
@@ -1496,6 +1497,7 @@ GLIBC_2.21 pthread_exit F
GLIBC_2.21 pthread_getaffinity_np F GLIBC_2.21 pthread_getaffinity_np F
GLIBC_2.21 pthread_getattr_np F GLIBC_2.21 pthread_getattr_np F
GLIBC_2.21 pthread_getschedparam F GLIBC_2.21 pthread_getschedparam F
GLIBC_2.21 pthread_getspecific F
GLIBC_2.21 pthread_key_create F GLIBC_2.21 pthread_key_create F
GLIBC_2.21 pthread_kill F GLIBC_2.21 pthread_kill F
GLIBC_2.21 pthread_mutex_consistent F GLIBC_2.21 pthread_mutex_consistent F
@@ -2220,9 +2222,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -3,7 +3,6 @@ GLIBC_2.21 _IO_ftrylockfile F
GLIBC_2.21 _IO_funlockfile F GLIBC_2.21 _IO_funlockfile F
GLIBC_2.21 __errno_location F GLIBC_2.21 __errno_location F
GLIBC_2.21 __h_errno_location F GLIBC_2.21 __h_errno_location F
GLIBC_2.21 __pthread_getspecific F
GLIBC_2.21 __pthread_mutex_destroy F GLIBC_2.21 __pthread_mutex_destroy F
GLIBC_2.21 __pthread_mutex_init F GLIBC_2.21 __pthread_mutex_init F
GLIBC_2.21 __pthread_mutex_lock F GLIBC_2.21 __pthread_mutex_lock F
@@ -59,7 +58,6 @@ GLIBC_2.21 pthread_getattr_default_np F
GLIBC_2.21 pthread_getconcurrency F GLIBC_2.21 pthread_getconcurrency F
GLIBC_2.21 pthread_getcpuclockid F GLIBC_2.21 pthread_getcpuclockid F
GLIBC_2.21 pthread_getname_np F GLIBC_2.21 pthread_getname_np F
GLIBC_2.21 pthread_getspecific F
GLIBC_2.21 pthread_join F GLIBC_2.21 pthread_join F
GLIBC_2.21 pthread_key_delete F GLIBC_2.21 pthread_key_delete F
GLIBC_2.21 pthread_kill_other_threads_np F GLIBC_2.21 pthread_kill_other_threads_np F

View File

@@ -194,6 +194,7 @@ GLIBC_2.0 __printf_fp F
GLIBC_2.0 __profile_frequency F GLIBC_2.0 __profile_frequency F
GLIBC_2.0 __progname D 0x4 GLIBC_2.0 __progname D 0x4
GLIBC_2.0 __progname_full D 0x4 GLIBC_2.0 __progname_full D 0x4
GLIBC_2.0 __pthread_getspecific F
GLIBC_2.0 __pthread_key_create F GLIBC_2.0 __pthread_key_create F
GLIBC_2.0 __pthread_once F GLIBC_2.0 __pthread_once F
GLIBC_2.0 __rcmd_errstr D 0x4 GLIBC_2.0 __rcmd_errstr D 0x4
@@ -873,6 +874,7 @@ GLIBC_2.0 pthread_condattr_init F
GLIBC_2.0 pthread_equal F GLIBC_2.0 pthread_equal F
GLIBC_2.0 pthread_exit F GLIBC_2.0 pthread_exit F
GLIBC_2.0 pthread_getschedparam F GLIBC_2.0 pthread_getschedparam F
GLIBC_2.0 pthread_getspecific F
GLIBC_2.0 pthread_key_create F GLIBC_2.0 pthread_key_create F
GLIBC_2.0 pthread_kill F GLIBC_2.0 pthread_kill F
GLIBC_2.0 pthread_mutex_destroy F GLIBC_2.0 pthread_mutex_destroy F
@@ -2235,9 +2237,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -3,7 +3,6 @@ GLIBC_2.0 _IO_ftrylockfile F
GLIBC_2.0 _IO_funlockfile F GLIBC_2.0 _IO_funlockfile F
GLIBC_2.0 __errno_location F GLIBC_2.0 __errno_location F
GLIBC_2.0 __h_errno_location F GLIBC_2.0 __h_errno_location F
GLIBC_2.0 __pthread_getspecific F
GLIBC_2.0 __pthread_mutex_destroy F GLIBC_2.0 __pthread_mutex_destroy F
GLIBC_2.0 __pthread_mutex_init F GLIBC_2.0 __pthread_mutex_init F
GLIBC_2.0 __pthread_mutex_lock F GLIBC_2.0 __pthread_mutex_lock F
@@ -24,7 +23,6 @@ GLIBC_2.0 pthread_cond_timedwait F
GLIBC_2.0 pthread_cond_wait F GLIBC_2.0 pthread_cond_wait F
GLIBC_2.0 pthread_create F GLIBC_2.0 pthread_create F
GLIBC_2.0 pthread_detach F GLIBC_2.0 pthread_detach F
GLIBC_2.0 pthread_getspecific F
GLIBC_2.0 pthread_join F GLIBC_2.0 pthread_join F
GLIBC_2.0 pthread_key_delete F GLIBC_2.0 pthread_key_delete F
GLIBC_2.0 pthread_kill_other_threads_np F GLIBC_2.0 pthread_kill_other_threads_np F

View File

@@ -194,6 +194,7 @@ GLIBC_2.0 __printf_fp F
GLIBC_2.0 __profile_frequency F GLIBC_2.0 __profile_frequency F
GLIBC_2.0 __progname D 0x4 GLIBC_2.0 __progname D 0x4
GLIBC_2.0 __progname_full D 0x4 GLIBC_2.0 __progname_full D 0x4
GLIBC_2.0 __pthread_getspecific F
GLIBC_2.0 __pthread_key_create F GLIBC_2.0 __pthread_key_create F
GLIBC_2.0 __pthread_once F GLIBC_2.0 __pthread_once F
GLIBC_2.0 __rcmd_errstr D 0x4 GLIBC_2.0 __rcmd_errstr D 0x4
@@ -873,6 +874,7 @@ GLIBC_2.0 pthread_condattr_init F
GLIBC_2.0 pthread_equal F GLIBC_2.0 pthread_equal F
GLIBC_2.0 pthread_exit F GLIBC_2.0 pthread_exit F
GLIBC_2.0 pthread_getschedparam F GLIBC_2.0 pthread_getschedparam F
GLIBC_2.0 pthread_getspecific F
GLIBC_2.0 pthread_key_create F GLIBC_2.0 pthread_key_create F
GLIBC_2.0 pthread_kill F GLIBC_2.0 pthread_kill F
GLIBC_2.0 pthread_mutex_destroy F GLIBC_2.0 pthread_mutex_destroy F
@@ -2268,9 +2270,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -409,6 +409,7 @@ GLIBC_2.3 __printf_fp F
GLIBC_2.3 __profile_frequency F GLIBC_2.3 __profile_frequency F
GLIBC_2.3 __progname D 0x8 GLIBC_2.3 __progname D 0x8
GLIBC_2.3 __progname_full D 0x8 GLIBC_2.3 __progname_full D 0x8
GLIBC_2.3 __pthread_getspecific F
GLIBC_2.3 __pthread_key_create F GLIBC_2.3 __pthread_key_create F
GLIBC_2.3 __pthread_once F GLIBC_2.3 __pthread_once F
GLIBC_2.3 __pwrite64 F GLIBC_2.3 __pwrite64 F
@@ -1380,6 +1381,7 @@ GLIBC_2.3 pthread_equal F
GLIBC_2.3 pthread_exit F GLIBC_2.3 pthread_exit F
GLIBC_2.3 pthread_getattr_np F GLIBC_2.3 pthread_getattr_np F
GLIBC_2.3 pthread_getschedparam F GLIBC_2.3 pthread_getschedparam F
GLIBC_2.3 pthread_getspecific F
GLIBC_2.3 pthread_key_create F GLIBC_2.3 pthread_key_create F
GLIBC_2.3 pthread_kill F GLIBC_2.3 pthread_kill F
GLIBC_2.3 pthread_mutex_destroy F GLIBC_2.3 pthread_mutex_destroy F
@@ -2090,9 +2092,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -31,7 +31,6 @@ GLIBC_2.3 _IO_ftrylockfile F
GLIBC_2.3 _IO_funlockfile F GLIBC_2.3 _IO_funlockfile F
GLIBC_2.3 __errno_location F GLIBC_2.3 __errno_location F
GLIBC_2.3 __h_errno_location F GLIBC_2.3 __h_errno_location F
GLIBC_2.3 __pthread_getspecific F
GLIBC_2.3 __pthread_mutex_destroy F GLIBC_2.3 __pthread_mutex_destroy F
GLIBC_2.3 __pthread_mutex_init F GLIBC_2.3 __pthread_mutex_init F
GLIBC_2.3 __pthread_mutex_lock F GLIBC_2.3 __pthread_mutex_lock F
@@ -77,7 +76,6 @@ GLIBC_2.3 pthread_create F
GLIBC_2.3 pthread_detach F GLIBC_2.3 pthread_detach F
GLIBC_2.3 pthread_getconcurrency F GLIBC_2.3 pthread_getconcurrency F
GLIBC_2.3 pthread_getcpuclockid F GLIBC_2.3 pthread_getcpuclockid F
GLIBC_2.3 pthread_getspecific F
GLIBC_2.3 pthread_join F GLIBC_2.3 pthread_join F
GLIBC_2.3 pthread_key_delete F GLIBC_2.3 pthread_key_delete F
GLIBC_2.3 pthread_kill_other_threads_np F GLIBC_2.3 pthread_kill_other_threads_np F

View File

@@ -425,6 +425,7 @@ GLIBC_2.17 __profile_frequency F
GLIBC_2.17 __progname D 0x8 GLIBC_2.17 __progname D 0x8
GLIBC_2.17 __progname_full D 0x8 GLIBC_2.17 __progname_full D 0x8
GLIBC_2.17 __pthread_cleanup_routine F GLIBC_2.17 __pthread_cleanup_routine F
GLIBC_2.17 __pthread_getspecific F
GLIBC_2.17 __pthread_key_create F GLIBC_2.17 __pthread_key_create F
GLIBC_2.17 __pthread_once F GLIBC_2.17 __pthread_once F
GLIBC_2.17 __pthread_unwind_next F GLIBC_2.17 __pthread_unwind_next F
@@ -1539,6 +1540,7 @@ GLIBC_2.17 pthread_exit F
GLIBC_2.17 pthread_getaffinity_np F GLIBC_2.17 pthread_getaffinity_np F
GLIBC_2.17 pthread_getattr_np F GLIBC_2.17 pthread_getattr_np F
GLIBC_2.17 pthread_getschedparam F GLIBC_2.17 pthread_getschedparam F
GLIBC_2.17 pthread_getspecific F
GLIBC_2.17 pthread_key_create F GLIBC_2.17 pthread_key_create F
GLIBC_2.17 pthread_kill F GLIBC_2.17 pthread_kill F
GLIBC_2.17 pthread_mutex_consistent F GLIBC_2.17 pthread_mutex_consistent F
@@ -2383,9 +2385,11 @@ GLIBC_2.33 stat64 F
GLIBC_2.34 __isnanf128 F GLIBC_2.34 __isnanf128 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -3,7 +3,6 @@ GLIBC_2.17 _IO_ftrylockfile F
GLIBC_2.17 _IO_funlockfile F GLIBC_2.17 _IO_funlockfile F
GLIBC_2.17 __errno_location F GLIBC_2.17 __errno_location F
GLIBC_2.17 __h_errno_location F GLIBC_2.17 __h_errno_location F
GLIBC_2.17 __pthread_getspecific F
GLIBC_2.17 __pthread_mutex_destroy F GLIBC_2.17 __pthread_mutex_destroy F
GLIBC_2.17 __pthread_mutex_init F GLIBC_2.17 __pthread_mutex_init F
GLIBC_2.17 __pthread_mutex_lock F GLIBC_2.17 __pthread_mutex_lock F
@@ -58,7 +57,6 @@ GLIBC_2.17 pthread_detach F
GLIBC_2.17 pthread_getconcurrency F GLIBC_2.17 pthread_getconcurrency F
GLIBC_2.17 pthread_getcpuclockid F GLIBC_2.17 pthread_getcpuclockid F
GLIBC_2.17 pthread_getname_np F GLIBC_2.17 pthread_getname_np F
GLIBC_2.17 pthread_getspecific F
GLIBC_2.17 pthread_join F GLIBC_2.17 pthread_join F
GLIBC_2.17 pthread_key_delete F GLIBC_2.17 pthread_key_delete F
GLIBC_2.17 pthread_kill_other_threads_np F GLIBC_2.17 pthread_kill_other_threads_np F

View File

@@ -325,6 +325,7 @@ GLIBC_2.33 __profile_frequency F
GLIBC_2.33 __progname D 0x4 GLIBC_2.33 __progname D 0x4
GLIBC_2.33 __progname_full D 0x4 GLIBC_2.33 __progname_full D 0x4
GLIBC_2.33 __pthread_cleanup_routine F GLIBC_2.33 __pthread_cleanup_routine F
GLIBC_2.33 __pthread_getspecific F
GLIBC_2.33 __pthread_key_create F GLIBC_2.33 __pthread_key_create F
GLIBC_2.33 __pthread_once F GLIBC_2.33 __pthread_once F
GLIBC_2.33 __pthread_unwind_next F GLIBC_2.33 __pthread_unwind_next F
@@ -1379,6 +1380,7 @@ GLIBC_2.33 pthread_exit F
GLIBC_2.33 pthread_getaffinity_np F GLIBC_2.33 pthread_getaffinity_np F
GLIBC_2.33 pthread_getattr_np F GLIBC_2.33 pthread_getattr_np F
GLIBC_2.33 pthread_getschedparam F GLIBC_2.33 pthread_getschedparam F
GLIBC_2.33 pthread_getspecific F
GLIBC_2.33 pthread_key_create F GLIBC_2.33 pthread_key_create F
GLIBC_2.33 pthread_kill F GLIBC_2.33 pthread_kill F
GLIBC_2.33 pthread_mutex_consistent F GLIBC_2.33 pthread_mutex_consistent F
@@ -1948,9 +1950,11 @@ GLIBC_2.33 writev F
GLIBC_2.33 wscanf F GLIBC_2.33 wscanf F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -3,7 +3,6 @@ GLIBC_2.33 _IO_ftrylockfile F
GLIBC_2.33 _IO_funlockfile F GLIBC_2.33 _IO_funlockfile F
GLIBC_2.33 __errno_location F GLIBC_2.33 __errno_location F
GLIBC_2.33 __h_errno_location F GLIBC_2.33 __h_errno_location F
GLIBC_2.33 __pthread_getspecific F
GLIBC_2.33 __pthread_mutex_destroy F GLIBC_2.33 __pthread_mutex_destroy F
GLIBC_2.33 __pthread_mutex_init F GLIBC_2.33 __pthread_mutex_init F
GLIBC_2.33 __pthread_mutex_lock F GLIBC_2.33 __pthread_mutex_lock F
@@ -74,7 +73,6 @@ GLIBC_2.33 pthread_getattr_default_np F
GLIBC_2.33 pthread_getconcurrency F GLIBC_2.33 pthread_getconcurrency F
GLIBC_2.33 pthread_getcpuclockid F GLIBC_2.33 pthread_getcpuclockid F
GLIBC_2.33 pthread_getname_np F GLIBC_2.33 pthread_getname_np F
GLIBC_2.33 pthread_getspecific F
GLIBC_2.33 pthread_join F GLIBC_2.33 pthread_join F
GLIBC_2.33 pthread_key_delete F GLIBC_2.33 pthread_key_delete F
GLIBC_2.33 pthread_kill_other_threads_np F GLIBC_2.33 pthread_kill_other_threads_np F

View File

@@ -336,6 +336,7 @@ GLIBC_2.27 __profile_frequency F
GLIBC_2.27 __progname D 0x8 GLIBC_2.27 __progname D 0x8
GLIBC_2.27 __progname_full D 0x8 GLIBC_2.27 __progname_full D 0x8
GLIBC_2.27 __pthread_cleanup_routine F GLIBC_2.27 __pthread_cleanup_routine F
GLIBC_2.27 __pthread_getspecific F
GLIBC_2.27 __pthread_key_create F GLIBC_2.27 __pthread_key_create F
GLIBC_2.27 __pthread_once F GLIBC_2.27 __pthread_once F
GLIBC_2.27 __pthread_unwind_next F GLIBC_2.27 __pthread_unwind_next F
@@ -1441,6 +1442,7 @@ GLIBC_2.27 pthread_exit F
GLIBC_2.27 pthread_getaffinity_np F GLIBC_2.27 pthread_getaffinity_np F
GLIBC_2.27 pthread_getattr_np F GLIBC_2.27 pthread_getattr_np F
GLIBC_2.27 pthread_getschedparam F GLIBC_2.27 pthread_getschedparam F
GLIBC_2.27 pthread_getspecific F
GLIBC_2.27 pthread_key_create F GLIBC_2.27 pthread_key_create F
GLIBC_2.27 pthread_kill F GLIBC_2.27 pthread_kill F
GLIBC_2.27 pthread_mutex_consistent F GLIBC_2.27 pthread_mutex_consistent F
@@ -2148,9 +2150,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -3,7 +3,6 @@ GLIBC_2.27 _IO_ftrylockfile F
GLIBC_2.27 _IO_funlockfile F GLIBC_2.27 _IO_funlockfile F
GLIBC_2.27 __errno_location F GLIBC_2.27 __errno_location F
GLIBC_2.27 __h_errno_location F GLIBC_2.27 __h_errno_location F
GLIBC_2.27 __pthread_getspecific F
GLIBC_2.27 __pthread_mutex_destroy F GLIBC_2.27 __pthread_mutex_destroy F
GLIBC_2.27 __pthread_mutex_init F GLIBC_2.27 __pthread_mutex_init F
GLIBC_2.27 __pthread_mutex_lock F GLIBC_2.27 __pthread_mutex_lock F
@@ -59,7 +58,6 @@ GLIBC_2.27 pthread_getattr_default_np F
GLIBC_2.27 pthread_getconcurrency F GLIBC_2.27 pthread_getconcurrency F
GLIBC_2.27 pthread_getcpuclockid F GLIBC_2.27 pthread_getcpuclockid F
GLIBC_2.27 pthread_getname_np F GLIBC_2.27 pthread_getname_np F
GLIBC_2.27 pthread_getspecific F
GLIBC_2.27 pthread_join F GLIBC_2.27 pthread_join F
GLIBC_2.27 pthread_key_delete F GLIBC_2.27 pthread_key_delete F
GLIBC_2.27 pthread_kill_other_threads_np F GLIBC_2.27 pthread_kill_other_threads_np F

View File

@@ -185,6 +185,7 @@ GLIBC_2.0 __printf_fp F
GLIBC_2.0 __profile_frequency F GLIBC_2.0 __profile_frequency F
GLIBC_2.0 __progname D 0x4 GLIBC_2.0 __progname D 0x4
GLIBC_2.0 __progname_full D 0x4 GLIBC_2.0 __progname_full D 0x4
GLIBC_2.0 __pthread_getspecific F
GLIBC_2.0 __pthread_key_create F GLIBC_2.0 __pthread_key_create F
GLIBC_2.0 __pthread_once F GLIBC_2.0 __pthread_once F
GLIBC_2.0 __rcmd_errstr D 0x4 GLIBC_2.0 __rcmd_errstr D 0x4
@@ -864,6 +865,7 @@ GLIBC_2.0 pthread_condattr_init F
GLIBC_2.0 pthread_equal F GLIBC_2.0 pthread_equal F
GLIBC_2.0 pthread_exit F GLIBC_2.0 pthread_exit F
GLIBC_2.0 pthread_getschedparam F GLIBC_2.0 pthread_getschedparam F
GLIBC_2.0 pthread_getspecific F
GLIBC_2.0 pthread_key_create F GLIBC_2.0 pthread_key_create F
GLIBC_2.0 pthread_kill F GLIBC_2.0 pthread_kill F
GLIBC_2.0 pthread_mutex_destroy F GLIBC_2.0 pthread_mutex_destroy F
@@ -2233,9 +2235,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -3,7 +3,6 @@ GLIBC_2.0 _IO_ftrylockfile F
GLIBC_2.0 _IO_funlockfile F GLIBC_2.0 _IO_funlockfile F
GLIBC_2.0 __errno_location F GLIBC_2.0 __errno_location F
GLIBC_2.0 __h_errno_location F GLIBC_2.0 __h_errno_location F
GLIBC_2.0 __pthread_getspecific F
GLIBC_2.0 __pthread_mutex_destroy F GLIBC_2.0 __pthread_mutex_destroy F
GLIBC_2.0 __pthread_mutex_init F GLIBC_2.0 __pthread_mutex_init F
GLIBC_2.0 __pthread_mutex_lock F GLIBC_2.0 __pthread_mutex_lock F
@@ -24,7 +23,6 @@ GLIBC_2.0 pthread_cond_timedwait F
GLIBC_2.0 pthread_cond_wait F GLIBC_2.0 pthread_cond_wait F
GLIBC_2.0 pthread_create F GLIBC_2.0 pthread_create F
GLIBC_2.0 pthread_detach F GLIBC_2.0 pthread_detach F
GLIBC_2.0 pthread_getspecific F
GLIBC_2.0 pthread_join F GLIBC_2.0 pthread_join F
GLIBC_2.0 pthread_key_delete F GLIBC_2.0 pthread_key_delete F
GLIBC_2.0 pthread_kill_other_threads_np F GLIBC_2.0 pthread_kill_other_threads_np F

View File

@@ -370,6 +370,7 @@ GLIBC_2.2 __printf_fp F
GLIBC_2.2 __profile_frequency F GLIBC_2.2 __profile_frequency F
GLIBC_2.2 __progname D 0x8 GLIBC_2.2 __progname D 0x8
GLIBC_2.2 __progname_full D 0x8 GLIBC_2.2 __progname_full D 0x8
GLIBC_2.2 __pthread_getspecific F
GLIBC_2.2 __pthread_key_create F GLIBC_2.2 __pthread_key_create F
GLIBC_2.2 __pthread_once F GLIBC_2.2 __pthread_once F
GLIBC_2.2 __pwrite64 F GLIBC_2.2 __pwrite64 F
@@ -1291,6 +1292,7 @@ GLIBC_2.2 pthread_condattr_init F
GLIBC_2.2 pthread_equal F GLIBC_2.2 pthread_equal F
GLIBC_2.2 pthread_exit F GLIBC_2.2 pthread_exit F
GLIBC_2.2 pthread_getschedparam F GLIBC_2.2 pthread_getschedparam F
GLIBC_2.2 pthread_getspecific F
GLIBC_2.2 pthread_key_create F GLIBC_2.2 pthread_key_create F
GLIBC_2.2 pthread_kill F GLIBC_2.2 pthread_kill F
GLIBC_2.2 pthread_mutex_destroy F GLIBC_2.2 pthread_mutex_destroy F
@@ -2126,9 +2128,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -11,7 +11,6 @@ GLIBC_2.2 _IO_ftrylockfile F
GLIBC_2.2 _IO_funlockfile F GLIBC_2.2 _IO_funlockfile F
GLIBC_2.2 __errno_location F GLIBC_2.2 __errno_location F
GLIBC_2.2 __h_errno_location F GLIBC_2.2 __h_errno_location F
GLIBC_2.2 __pthread_getspecific F
GLIBC_2.2 __pthread_mutex_destroy F GLIBC_2.2 __pthread_mutex_destroy F
GLIBC_2.2 __pthread_mutex_init F GLIBC_2.2 __pthread_mutex_init F
GLIBC_2.2 __pthread_mutex_lock F GLIBC_2.2 __pthread_mutex_lock F
@@ -58,7 +57,6 @@ GLIBC_2.2 pthread_create F
GLIBC_2.2 pthread_detach F GLIBC_2.2 pthread_detach F
GLIBC_2.2 pthread_getconcurrency F GLIBC_2.2 pthread_getconcurrency F
GLIBC_2.2 pthread_getcpuclockid F GLIBC_2.2 pthread_getcpuclockid F
GLIBC_2.2 pthread_getspecific F
GLIBC_2.2 pthread_join F GLIBC_2.2 pthread_join F
GLIBC_2.2 pthread_key_delete F GLIBC_2.2 pthread_key_delete F
GLIBC_2.2 pthread_kill_other_threads_np F GLIBC_2.2 pthread_kill_other_threads_np F

View File

@@ -359,6 +359,7 @@ GLIBC_2.2 __printf_fp F
GLIBC_2.2 __profile_frequency F GLIBC_2.2 __profile_frequency F
GLIBC_2.2 __progname D 0x4 GLIBC_2.2 __progname D 0x4
GLIBC_2.2 __progname_full D 0x4 GLIBC_2.2 __progname_full D 0x4
GLIBC_2.2 __pthread_getspecific F
GLIBC_2.2 __pthread_key_create F GLIBC_2.2 __pthread_key_create F
GLIBC_2.2 __pthread_once F GLIBC_2.2 __pthread_once F
GLIBC_2.2 __pwrite64 F GLIBC_2.2 __pwrite64 F
@@ -1277,6 +1278,7 @@ GLIBC_2.2 pthread_condattr_init F
GLIBC_2.2 pthread_equal F GLIBC_2.2 pthread_equal F
GLIBC_2.2 pthread_exit F GLIBC_2.2 pthread_exit F
GLIBC_2.2 pthread_getschedparam F GLIBC_2.2 pthread_getschedparam F
GLIBC_2.2 pthread_getspecific F
GLIBC_2.2 pthread_key_create F GLIBC_2.2 pthread_key_create F
GLIBC_2.2 pthread_kill F GLIBC_2.2 pthread_kill F
GLIBC_2.2 pthread_mutex_destroy F GLIBC_2.2 pthread_mutex_destroy F
@@ -2095,9 +2097,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -10,7 +10,6 @@ GLIBC_2.2 _IO_ftrylockfile F
GLIBC_2.2 _IO_funlockfile F GLIBC_2.2 _IO_funlockfile F
GLIBC_2.2 __errno_location F GLIBC_2.2 __errno_location F
GLIBC_2.2 __h_errno_location F GLIBC_2.2 __h_errno_location F
GLIBC_2.2 __pthread_getspecific F
GLIBC_2.2 __pthread_mutex_destroy F GLIBC_2.2 __pthread_mutex_destroy F
GLIBC_2.2 __pthread_mutex_init F GLIBC_2.2 __pthread_mutex_init F
GLIBC_2.2 __pthread_mutex_lock F GLIBC_2.2 __pthread_mutex_lock F
@@ -57,7 +56,6 @@ GLIBC_2.2 pthread_create F
GLIBC_2.2 pthread_detach F GLIBC_2.2 pthread_detach F
GLIBC_2.2 pthread_getconcurrency F GLIBC_2.2 pthread_getconcurrency F
GLIBC_2.2 pthread_getcpuclockid F GLIBC_2.2 pthread_getcpuclockid F
GLIBC_2.2 pthread_getspecific F
GLIBC_2.2 pthread_join F GLIBC_2.2 pthread_join F
GLIBC_2.2 pthread_key_delete F GLIBC_2.2 pthread_key_delete F
GLIBC_2.2 pthread_kill_other_threads_np F GLIBC_2.2 pthread_kill_other_threads_np F

View File

@@ -359,6 +359,7 @@ GLIBC_2.2 __printf_fp F
GLIBC_2.2 __profile_frequency F GLIBC_2.2 __profile_frequency F
GLIBC_2.2 __progname D 0x4 GLIBC_2.2 __progname D 0x4
GLIBC_2.2 __progname_full D 0x4 GLIBC_2.2 __progname_full D 0x4
GLIBC_2.2 __pthread_getspecific F
GLIBC_2.2 __pthread_key_create F GLIBC_2.2 __pthread_key_create F
GLIBC_2.2 __pthread_once F GLIBC_2.2 __pthread_once F
GLIBC_2.2 __pwrite64 F GLIBC_2.2 __pwrite64 F
@@ -1277,6 +1278,7 @@ GLIBC_2.2 pthread_condattr_init F
GLIBC_2.2 pthread_equal F GLIBC_2.2 pthread_equal F
GLIBC_2.2 pthread_exit F GLIBC_2.2 pthread_exit F
GLIBC_2.2 pthread_getschedparam F GLIBC_2.2 pthread_getschedparam F
GLIBC_2.2 pthread_getspecific F
GLIBC_2.2 pthread_key_create F GLIBC_2.2 pthread_key_create F
GLIBC_2.2 pthread_kill F GLIBC_2.2 pthread_kill F
GLIBC_2.2 pthread_mutex_destroy F GLIBC_2.2 pthread_mutex_destroy F
@@ -2092,9 +2094,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -10,7 +10,6 @@ GLIBC_2.2 _IO_ftrylockfile F
GLIBC_2.2 _IO_funlockfile F GLIBC_2.2 _IO_funlockfile F
GLIBC_2.2 __errno_location F GLIBC_2.2 __errno_location F
GLIBC_2.2 __h_errno_location F GLIBC_2.2 __h_errno_location F
GLIBC_2.2 __pthread_getspecific F
GLIBC_2.2 __pthread_mutex_destroy F GLIBC_2.2 __pthread_mutex_destroy F
GLIBC_2.2 __pthread_mutex_init F GLIBC_2.2 __pthread_mutex_init F
GLIBC_2.2 __pthread_mutex_lock F GLIBC_2.2 __pthread_mutex_lock F
@@ -57,7 +56,6 @@ GLIBC_2.2 pthread_create F
GLIBC_2.2 pthread_detach F GLIBC_2.2 pthread_detach F
GLIBC_2.2 pthread_getconcurrency F GLIBC_2.2 pthread_getconcurrency F
GLIBC_2.2 pthread_getcpuclockid F GLIBC_2.2 pthread_getcpuclockid F
GLIBC_2.2 pthread_getspecific F
GLIBC_2.2 pthread_join F GLIBC_2.2 pthread_join F
GLIBC_2.2 pthread_key_delete F GLIBC_2.2 pthread_key_delete F
GLIBC_2.2 pthread_kill_other_threads_np F GLIBC_2.2 pthread_kill_other_threads_np F

View File

@@ -189,6 +189,7 @@ GLIBC_2.0 __printf_fp F
GLIBC_2.0 __profile_frequency F GLIBC_2.0 __profile_frequency F
GLIBC_2.0 __progname D 0x4 GLIBC_2.0 __progname D 0x4
GLIBC_2.0 __progname_full D 0x4 GLIBC_2.0 __progname_full D 0x4
GLIBC_2.0 __pthread_getspecific F
GLIBC_2.0 __pthread_key_create F GLIBC_2.0 __pthread_key_create F
GLIBC_2.0 __pthread_once F GLIBC_2.0 __pthread_once F
GLIBC_2.0 __rcmd_errstr D 0x4 GLIBC_2.0 __rcmd_errstr D 0x4
@@ -867,6 +868,7 @@ GLIBC_2.0 pthread_condattr_init F
GLIBC_2.0 pthread_equal F GLIBC_2.0 pthread_equal F
GLIBC_2.0 pthread_exit F GLIBC_2.0 pthread_exit F
GLIBC_2.0 pthread_getschedparam F GLIBC_2.0 pthread_getschedparam F
GLIBC_2.0 pthread_getspecific F
GLIBC_2.0 pthread_key_create F GLIBC_2.0 pthread_key_create F
GLIBC_2.0 pthread_kill F GLIBC_2.0 pthread_kill F
GLIBC_2.0 pthread_mutex_destroy F GLIBC_2.0 pthread_mutex_destroy F
@@ -2224,9 +2226,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -3,7 +3,6 @@ GLIBC_2.0 _IO_ftrylockfile F
GLIBC_2.0 _IO_funlockfile F GLIBC_2.0 _IO_funlockfile F
GLIBC_2.0 __errno_location F GLIBC_2.0 __errno_location F
GLIBC_2.0 __h_errno_location F GLIBC_2.0 __h_errno_location F
GLIBC_2.0 __pthread_getspecific F
GLIBC_2.0 __pthread_mutex_destroy F GLIBC_2.0 __pthread_mutex_destroy F
GLIBC_2.0 __pthread_mutex_init F GLIBC_2.0 __pthread_mutex_init F
GLIBC_2.0 __pthread_mutex_lock F GLIBC_2.0 __pthread_mutex_lock F
@@ -24,7 +23,6 @@ GLIBC_2.0 pthread_cond_timedwait F
GLIBC_2.0 pthread_cond_wait F GLIBC_2.0 pthread_cond_wait F
GLIBC_2.0 pthread_create F GLIBC_2.0 pthread_create F
GLIBC_2.0 pthread_detach F GLIBC_2.0 pthread_detach F
GLIBC_2.0 pthread_getspecific F
GLIBC_2.0 pthread_join F GLIBC_2.0 pthread_join F
GLIBC_2.0 pthread_key_delete F GLIBC_2.0 pthread_key_delete F
GLIBC_2.0 pthread_kill_other_threads_np F GLIBC_2.0 pthread_kill_other_threads_np F

View File

@@ -397,6 +397,7 @@ GLIBC_2.2 __printf_fp F
GLIBC_2.2 __profile_frequency F GLIBC_2.2 __profile_frequency F
GLIBC_2.2 __progname D 0x8 GLIBC_2.2 __progname D 0x8
GLIBC_2.2 __progname_full D 0x8 GLIBC_2.2 __progname_full D 0x8
GLIBC_2.2 __pthread_getspecific F
GLIBC_2.2 __pthread_key_create F GLIBC_2.2 __pthread_key_create F
GLIBC_2.2 __pthread_once F GLIBC_2.2 __pthread_once F
GLIBC_2.2 __pwrite64 F GLIBC_2.2 __pwrite64 F
@@ -1320,6 +1321,7 @@ GLIBC_2.2 pthread_condattr_init F
GLIBC_2.2 pthread_equal F GLIBC_2.2 pthread_equal F
GLIBC_2.2 pthread_exit F GLIBC_2.2 pthread_exit F
GLIBC_2.2 pthread_getschedparam F GLIBC_2.2 pthread_getschedparam F
GLIBC_2.2 pthread_getspecific F
GLIBC_2.2 pthread_key_create F GLIBC_2.2 pthread_key_create F
GLIBC_2.2 pthread_kill F GLIBC_2.2 pthread_kill F
GLIBC_2.2 pthread_mutex_destroy F GLIBC_2.2 pthread_mutex_destroy F
@@ -2143,9 +2145,11 @@ GLIBC_2.33 stat F
GLIBC_2.33 stat64 F GLIBC_2.33 stat64 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -10,7 +10,6 @@ GLIBC_2.2 _IO_ftrylockfile F
GLIBC_2.2 _IO_funlockfile F GLIBC_2.2 _IO_funlockfile F
GLIBC_2.2 __errno_location F GLIBC_2.2 __errno_location F
GLIBC_2.2 __h_errno_location F GLIBC_2.2 __h_errno_location F
GLIBC_2.2 __pthread_getspecific F
GLIBC_2.2 __pthread_mutex_destroy F GLIBC_2.2 __pthread_mutex_destroy F
GLIBC_2.2 __pthread_mutex_init F GLIBC_2.2 __pthread_mutex_init F
GLIBC_2.2 __pthread_mutex_lock F GLIBC_2.2 __pthread_mutex_lock F
@@ -57,7 +56,6 @@ GLIBC_2.2 pthread_create F
GLIBC_2.2 pthread_detach F GLIBC_2.2 pthread_detach F
GLIBC_2.2 pthread_getconcurrency F GLIBC_2.2 pthread_getconcurrency F
GLIBC_2.2 pthread_getcpuclockid F GLIBC_2.2 pthread_getcpuclockid F
GLIBC_2.2 pthread_getspecific F
GLIBC_2.2 pthread_join F GLIBC_2.2 pthread_join F
GLIBC_2.2 pthread_key_delete F GLIBC_2.2 pthread_key_delete F
GLIBC_2.2 pthread_kill_other_threads_np F GLIBC_2.2 pthread_kill_other_threads_np F

View File

@@ -358,6 +358,7 @@ GLIBC_2.2.5 __printf_fp F
GLIBC_2.2.5 __profile_frequency F GLIBC_2.2.5 __profile_frequency F
GLIBC_2.2.5 __progname D 0x8 GLIBC_2.2.5 __progname D 0x8
GLIBC_2.2.5 __progname_full D 0x8 GLIBC_2.2.5 __progname_full D 0x8
GLIBC_2.2.5 __pthread_getspecific F
GLIBC_2.2.5 __pthread_key_create F GLIBC_2.2.5 __pthread_key_create F
GLIBC_2.2.5 __pthread_once F GLIBC_2.2.5 __pthread_once F
GLIBC_2.2.5 __pwrite64 F GLIBC_2.2.5 __pwrite64 F
@@ -1288,6 +1289,7 @@ GLIBC_2.2.5 pthread_equal F
GLIBC_2.2.5 pthread_exit F GLIBC_2.2.5 pthread_exit F
GLIBC_2.2.5 pthread_getattr_np F GLIBC_2.2.5 pthread_getattr_np F
GLIBC_2.2.5 pthread_getschedparam F GLIBC_2.2.5 pthread_getschedparam F
GLIBC_2.2.5 pthread_getspecific F
GLIBC_2.2.5 pthread_key_create F GLIBC_2.2.5 pthread_key_create F
GLIBC_2.2.5 pthread_kill F GLIBC_2.2.5 pthread_kill F
GLIBC_2.2.5 pthread_mutex_destroy F GLIBC_2.2.5 pthread_mutex_destroy F
@@ -2104,9 +2106,11 @@ GLIBC_2.33 stat64 F
GLIBC_2.34 __isnanf128 F GLIBC_2.34 __isnanf128 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -10,7 +10,6 @@ GLIBC_2.2.5 _IO_ftrylockfile F
GLIBC_2.2.5 _IO_funlockfile F GLIBC_2.2.5 _IO_funlockfile F
GLIBC_2.2.5 __errno_location F GLIBC_2.2.5 __errno_location F
GLIBC_2.2.5 __h_errno_location F GLIBC_2.2.5 __h_errno_location F
GLIBC_2.2.5 __pthread_getspecific F
GLIBC_2.2.5 __pthread_mutex_destroy F GLIBC_2.2.5 __pthread_mutex_destroy F
GLIBC_2.2.5 __pthread_mutex_init F GLIBC_2.2.5 __pthread_mutex_init F
GLIBC_2.2.5 __pthread_mutex_lock F GLIBC_2.2.5 __pthread_mutex_lock F
@@ -57,7 +56,6 @@ GLIBC_2.2.5 pthread_create F
GLIBC_2.2.5 pthread_detach F GLIBC_2.2.5 pthread_detach F
GLIBC_2.2.5 pthread_getconcurrency F GLIBC_2.2.5 pthread_getconcurrency F
GLIBC_2.2.5 pthread_getcpuclockid F GLIBC_2.2.5 pthread_getcpuclockid F
GLIBC_2.2.5 pthread_getspecific F
GLIBC_2.2.5 pthread_join F GLIBC_2.2.5 pthread_join F
GLIBC_2.2.5 pthread_key_delete F GLIBC_2.2.5 pthread_key_delete F
GLIBC_2.2.5 pthread_kill_other_threads_np F GLIBC_2.2.5 pthread_kill_other_threads_np F

View File

@@ -340,6 +340,7 @@ GLIBC_2.16 __profile_frequency F
GLIBC_2.16 __progname D 0x4 GLIBC_2.16 __progname D 0x4
GLIBC_2.16 __progname_full D 0x4 GLIBC_2.16 __progname_full D 0x4
GLIBC_2.16 __pthread_cleanup_routine F GLIBC_2.16 __pthread_cleanup_routine F
GLIBC_2.16 __pthread_getspecific F
GLIBC_2.16 __pthread_key_create F GLIBC_2.16 __pthread_key_create F
GLIBC_2.16 __pthread_once F GLIBC_2.16 __pthread_once F
GLIBC_2.16 __pthread_unwind_next F GLIBC_2.16 __pthread_unwind_next F
@@ -1458,6 +1459,7 @@ GLIBC_2.16 pthread_exit F
GLIBC_2.16 pthread_getaffinity_np F GLIBC_2.16 pthread_getaffinity_np F
GLIBC_2.16 pthread_getattr_np F GLIBC_2.16 pthread_getattr_np F
GLIBC_2.16 pthread_getschedparam F GLIBC_2.16 pthread_getschedparam F
GLIBC_2.16 pthread_getspecific F
GLIBC_2.16 pthread_key_create F GLIBC_2.16 pthread_key_create F
GLIBC_2.16 pthread_kill F GLIBC_2.16 pthread_kill F
GLIBC_2.16 pthread_mutex_consistent F GLIBC_2.16 pthread_mutex_consistent F
@@ -2202,9 +2204,11 @@ GLIBC_2.33 stat64 F
GLIBC_2.34 __isnanf128 F GLIBC_2.34 __isnanf128 F
GLIBC_2.34 __libc_start_main F GLIBC_2.34 __libc_start_main F
GLIBC_2.34 __pthread_cleanup_routine F GLIBC_2.34 __pthread_cleanup_routine F
GLIBC_2.34 __pthread_getspecific F
GLIBC_2.34 __pthread_key_create F GLIBC_2.34 __pthread_key_create F
GLIBC_2.34 __pthread_once F GLIBC_2.34 __pthread_once F
GLIBC_2.34 __pthread_unwind_next F GLIBC_2.34 __pthread_unwind_next F
GLIBC_2.34 pthread_getspecific F
GLIBC_2.34 pthread_key_create F GLIBC_2.34 pthread_key_create F
GLIBC_2.34 pthread_kill F GLIBC_2.34 pthread_kill F
GLIBC_2.34 pthread_mutex_consistent F GLIBC_2.34 pthread_mutex_consistent F

View File

@@ -3,7 +3,6 @@ GLIBC_2.16 _IO_ftrylockfile F
GLIBC_2.16 _IO_funlockfile F GLIBC_2.16 _IO_funlockfile F
GLIBC_2.16 __errno_location F GLIBC_2.16 __errno_location F
GLIBC_2.16 __h_errno_location F GLIBC_2.16 __h_errno_location F
GLIBC_2.16 __pthread_getspecific F
GLIBC_2.16 __pthread_mutex_destroy F GLIBC_2.16 __pthread_mutex_destroy F
GLIBC_2.16 __pthread_mutex_init F GLIBC_2.16 __pthread_mutex_init F
GLIBC_2.16 __pthread_mutex_lock F GLIBC_2.16 __pthread_mutex_lock F
@@ -58,7 +57,6 @@ GLIBC_2.16 pthread_detach F
GLIBC_2.16 pthread_getconcurrency F GLIBC_2.16 pthread_getconcurrency F
GLIBC_2.16 pthread_getcpuclockid F GLIBC_2.16 pthread_getcpuclockid F
GLIBC_2.16 pthread_getname_np F GLIBC_2.16 pthread_getname_np F
GLIBC_2.16 pthread_getspecific F
GLIBC_2.16 pthread_join F GLIBC_2.16 pthread_join F
GLIBC_2.16 pthread_key_delete F GLIBC_2.16 pthread_key_delete F
GLIBC_2.16 pthread_kill_other_threads_np F GLIBC_2.16 pthread_kill_other_threads_np F