mirror of
git://sourceware.org/git/glibc.git
synced 2025-04-24 14:41:06 +08:00
rt: Move shm_open into libc
This function has no dependency on libpthread, so the move is also applied to Hurd. To avoid localplt failures, use __open64_nocancel instead of pthread_setcancelstate and open. The symbol was moved using scripts/move-symbol-to-libc.py. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
This commit is contained in:
parent
a749a00fb5
commit
c6e7ec2f12
rt
sysdeps
mach/hurd/i386
unix/sysv/linux
aarch64
alpha
arc
arm
csky
hppa
i386
ia64
m68k
microblaze
mips
mips32
mips64
nios2
powerpc
powerpc32
powerpc64
riscv
s390
sh
sparc
x86_64
@ -24,6 +24,9 @@ include ../Makeconfig
|
||||
|
||||
headers := aio.h mqueue.h bits/mqueue.h bits/mqueue2.h
|
||||
|
||||
routines = \
|
||||
shm_open \
|
||||
|
||||
librt-routines = \
|
||||
aio_cancel \
|
||||
aio_error \
|
||||
@ -49,7 +52,6 @@ librt-routines = \
|
||||
mq_timedreceive \
|
||||
mq_timedsend \
|
||||
mq_unlink \
|
||||
shm_open \
|
||||
shm_unlink \
|
||||
timer_create \
|
||||
timer_delete \
|
||||
|
@ -1,3 +1,11 @@
|
||||
libc {
|
||||
GLIBC_2.2 {
|
||||
shm_open;
|
||||
}
|
||||
GLIBC_2.34 {
|
||||
shm_open;
|
||||
}
|
||||
}
|
||||
librt {
|
||||
GLIBC_2.1 {
|
||||
aio_cancel;
|
||||
@ -19,7 +27,6 @@ librt {
|
||||
lio_listio64;
|
||||
}
|
||||
GLIBC_2.2 {
|
||||
shm_open;
|
||||
shm_unlink;
|
||||
timer_create;
|
||||
timer_delete;
|
||||
|
@ -18,13 +18,15 @@
|
||||
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
#include <not-cancel.h>
|
||||
#include <pthread.h>
|
||||
#include <shlib-compat.h>
|
||||
#include <shm-directory.h>
|
||||
#include <unistd.h>
|
||||
|
||||
/* Open shared memory object. */
|
||||
int
|
||||
shm_open (const char *name, int oflag, mode_t mode)
|
||||
__shm_open (const char *name, int oflag, mode_t mode)
|
||||
{
|
||||
struct shmdir_name dirname;
|
||||
if (__shm_get_name (&dirname, name, false) != 0)
|
||||
@ -35,18 +37,17 @@ shm_open (const char *name, int oflag, mode_t mode)
|
||||
|
||||
oflag |= O_NOFOLLOW | O_CLOEXEC;
|
||||
|
||||
/* Disable asynchronous cancellation. */
|
||||
int state;
|
||||
pthread_setcancelstate (PTHREAD_CANCEL_DISABLE, &state);
|
||||
|
||||
int fd = open (dirname.name, oflag, mode);
|
||||
int fd = __open64_nocancel (dirname.name, oflag, mode);
|
||||
if (fd == -1 && __glibc_unlikely (errno == EISDIR))
|
||||
/* It might be better to fold this error with EINVAL since
|
||||
directory names are just another example for unsuitable shared
|
||||
object names and the standard does not mention EISDIR. */
|
||||
__set_errno (EINVAL);
|
||||
|
||||
pthread_setcancelstate (state, NULL);
|
||||
|
||||
return fd;
|
||||
}
|
||||
versioned_symbol (libc, __shm_open, shm_open, GLIBC_2_34);
|
||||
|
||||
#if OTHER_SHLIB_COMPAT (librt, GLIBC_2_2, GLIBC_2_34)
|
||||
compat_symbol (libc, __shm_open, shm_open, GLIBC_2_2);
|
||||
#endif
|
||||
|
@ -1566,6 +1566,7 @@ GLIBC_2.2.6 setutxent F
|
||||
GLIBC_2.2.6 setvbuf F
|
||||
GLIBC_2.2.6 sgetspent F
|
||||
GLIBC_2.2.6 sgetspent_r F
|
||||
GLIBC_2.2.6 shm_open F
|
||||
GLIBC_2.2.6 shmat F
|
||||
GLIBC_2.2.6 shmctl F
|
||||
GLIBC_2.2.6 shmdt F
|
||||
@ -2226,6 +2227,7 @@ GLIBC_2.34 dlopen F
|
||||
GLIBC_2.34 dlsym F
|
||||
GLIBC_2.34 dlvsym F
|
||||
GLIBC_2.34 execveat F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 timespec_getres F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
|
@ -15,7 +15,6 @@ GLIBC_2.2.6 aio_write F
|
||||
GLIBC_2.2.6 aio_write64 F
|
||||
GLIBC_2.2.6 lio_listio F
|
||||
GLIBC_2.2.6 lio_listio64 F
|
||||
GLIBC_2.2.6 shm_open F
|
||||
GLIBC_2.2.6 shm_unlink F
|
||||
GLIBC_2.2.6 timer_create F
|
||||
GLIBC_2.2.6 timer_delete F
|
||||
|
@ -1783,6 +1783,7 @@ GLIBC_2.17 sgetsgent F
|
||||
GLIBC_2.17 sgetsgent_r F
|
||||
GLIBC_2.17 sgetspent F
|
||||
GLIBC_2.17 sgetspent_r F
|
||||
GLIBC_2.17 shm_open F
|
||||
GLIBC_2.17 shmat F
|
||||
GLIBC_2.17 shmctl F
|
||||
GLIBC_2.17 shmdt F
|
||||
@ -2465,6 +2466,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -26,7 +26,6 @@ GLIBC_2.17 mq_setattr F
|
||||
GLIBC_2.17 mq_timedreceive F
|
||||
GLIBC_2.17 mq_timedsend F
|
||||
GLIBC_2.17 mq_unlink F
|
||||
GLIBC_2.17 shm_open F
|
||||
GLIBC_2.17 shm_unlink F
|
||||
GLIBC_2.17 timer_create F
|
||||
GLIBC_2.17 timer_delete F
|
||||
|
@ -2067,6 +2067,7 @@ GLIBC_2.2 rresvport_af F
|
||||
GLIBC_2.2 ruserok_af F
|
||||
GLIBC_2.2 sem_timedwait F
|
||||
GLIBC_2.2 semctl F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shmctl F
|
||||
GLIBC_2.2 svc_getreq_common F
|
||||
GLIBC_2.2 svc_getreq_poll F
|
||||
@ -2558,6 +2559,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -15,7 +15,6 @@ GLIBC_2.1 aio_write F
|
||||
GLIBC_2.1 aio_write64 F
|
||||
GLIBC_2.1 lio_listio F
|
||||
GLIBC_2.1 lio_listio64 F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shm_unlink F
|
||||
GLIBC_2.2 timer_create F
|
||||
GLIBC_2.2 timer_delete F
|
||||
|
@ -1728,6 +1728,7 @@ GLIBC_2.32 sgetsgent F
|
||||
GLIBC_2.32 sgetsgent_r F
|
||||
GLIBC_2.32 sgetspent F
|
||||
GLIBC_2.32 sgetspent_r F
|
||||
GLIBC_2.32 shm_open F
|
||||
GLIBC_2.32 shmat F
|
||||
GLIBC_2.32 shmctl F
|
||||
GLIBC_2.32 shmdt F
|
||||
@ -2224,6 +2225,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -26,7 +26,6 @@ GLIBC_2.32 mq_setattr F
|
||||
GLIBC_2.32 mq_timedreceive F
|
||||
GLIBC_2.32 mq_timedsend F
|
||||
GLIBC_2.32 mq_unlink F
|
||||
GLIBC_2.32 shm_open F
|
||||
GLIBC_2.32 shm_unlink F
|
||||
GLIBC_2.32 timer_create F
|
||||
GLIBC_2.32 timer_delete F
|
||||
|
@ -397,6 +397,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
@ -2101,6 +2102,7 @@ GLIBC_2.4 setvbuf F
|
||||
GLIBC_2.4 setxattr F
|
||||
GLIBC_2.4 sgetspent F
|
||||
GLIBC_2.4 sgetspent_r F
|
||||
GLIBC_2.4 shm_open F
|
||||
GLIBC_2.4 shmat F
|
||||
GLIBC_2.4 shmctl F
|
||||
GLIBC_2.4 shmdt F
|
||||
|
@ -30,7 +30,6 @@ GLIBC_2.4 mq_setattr F
|
||||
GLIBC_2.4 mq_timedreceive F
|
||||
GLIBC_2.4 mq_timedsend F
|
||||
GLIBC_2.4 mq_unlink F
|
||||
GLIBC_2.4 shm_open F
|
||||
GLIBC_2.4 shm_unlink F
|
||||
GLIBC_2.4 timer_create F
|
||||
GLIBC_2.4 timer_delete F
|
||||
|
@ -394,6 +394,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
@ -2098,6 +2099,7 @@ GLIBC_2.4 setvbuf F
|
||||
GLIBC_2.4 setxattr F
|
||||
GLIBC_2.4 sgetspent F
|
||||
GLIBC_2.4 sgetspent_r F
|
||||
GLIBC_2.4 shm_open F
|
||||
GLIBC_2.4 shmat F
|
||||
GLIBC_2.4 shmctl F
|
||||
GLIBC_2.4 shmdt F
|
||||
|
@ -30,7 +30,6 @@ GLIBC_2.4 mq_setattr F
|
||||
GLIBC_2.4 mq_timedreceive F
|
||||
GLIBC_2.4 mq_timedsend F
|
||||
GLIBC_2.4 mq_unlink F
|
||||
GLIBC_2.4 shm_open F
|
||||
GLIBC_2.4 shm_unlink F
|
||||
GLIBC_2.4 timer_create F
|
||||
GLIBC_2.4 timer_delete F
|
||||
|
@ -1788,6 +1788,7 @@ GLIBC_2.29 sgetsgent F
|
||||
GLIBC_2.29 sgetsgent_r F
|
||||
GLIBC_2.29 sgetspent F
|
||||
GLIBC_2.29 sgetspent_r F
|
||||
GLIBC_2.29 shm_open F
|
||||
GLIBC_2.29 shmat F
|
||||
GLIBC_2.29 shmctl F
|
||||
GLIBC_2.29 shmdt F
|
||||
@ -2484,6 +2485,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -26,7 +26,6 @@ GLIBC_2.29 mq_setattr F
|
||||
GLIBC_2.29 mq_timedreceive F
|
||||
GLIBC_2.29 mq_timedsend F
|
||||
GLIBC_2.29 mq_unlink F
|
||||
GLIBC_2.29 shm_open F
|
||||
GLIBC_2.29 shm_unlink F
|
||||
GLIBC_2.29 timer_create F
|
||||
GLIBC_2.29 timer_delete F
|
||||
|
@ -1555,6 +1555,7 @@ GLIBC_2.2 setutxent F
|
||||
GLIBC_2.2 setvbuf F
|
||||
GLIBC_2.2 sgetspent F
|
||||
GLIBC_2.2 sgetspent_r F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shmat F
|
||||
GLIBC_2.2 shmctl F
|
||||
GLIBC_2.2 shmdt F
|
||||
@ -2438,6 +2439,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -15,7 +15,6 @@ GLIBC_2.1 aio_write F
|
||||
GLIBC_2.1 aio_write64 F
|
||||
GLIBC_2.1 lio_listio F
|
||||
GLIBC_2.1 lio_listio64 F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shm_unlink F
|
||||
GLIBC_2.2 timer_create F
|
||||
GLIBC_2.2 timer_delete F
|
||||
|
@ -2080,6 +2080,7 @@ GLIBC_2.2 scandir64 F
|
||||
GLIBC_2.2 sem_timedwait F
|
||||
GLIBC_2.2 semctl F
|
||||
GLIBC_2.2 setrlimit F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shmctl F
|
||||
GLIBC_2.2 svc_getreq_common F
|
||||
GLIBC_2.2 svc_getreq_poll F
|
||||
@ -2622,6 +2623,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -15,7 +15,6 @@ GLIBC_2.1 aio_write F
|
||||
GLIBC_2.1 aio_write64 F
|
||||
GLIBC_2.1 lio_listio F
|
||||
GLIBC_2.1 lio_listio64 F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shm_unlink F
|
||||
GLIBC_2.2 timer_create F
|
||||
GLIBC_2.2 timer_delete F
|
||||
|
@ -1576,6 +1576,7 @@ GLIBC_2.2 setutxent F
|
||||
GLIBC_2.2 setvbuf F
|
||||
GLIBC_2.2 sgetspent F
|
||||
GLIBC_2.2 sgetspent_r F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shmat F
|
||||
GLIBC_2.2 shmctl F
|
||||
GLIBC_2.2 shmdt F
|
||||
@ -2398,6 +2399,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -15,7 +15,6 @@ GLIBC_2.1 aio_write F
|
||||
GLIBC_2.1 aio_write64 F
|
||||
GLIBC_2.1 lio_listio F
|
||||
GLIBC_2.1 lio_listio64 F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shm_unlink F
|
||||
GLIBC_2.2 timer_create F
|
||||
GLIBC_2.2 timer_delete F
|
||||
|
@ -398,6 +398,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
@ -2081,6 +2082,7 @@ GLIBC_2.4 setvbuf F
|
||||
GLIBC_2.4 setxattr F
|
||||
GLIBC_2.4 sgetspent F
|
||||
GLIBC_2.4 sgetspent_r F
|
||||
GLIBC_2.4 shm_open F
|
||||
GLIBC_2.4 shmat F
|
||||
GLIBC_2.4 shmctl F
|
||||
GLIBC_2.4 shmdt F
|
||||
|
@ -30,7 +30,6 @@ GLIBC_2.4 mq_setattr F
|
||||
GLIBC_2.4 mq_timedreceive F
|
||||
GLIBC_2.4 mq_timedsend F
|
||||
GLIBC_2.4 mq_unlink F
|
||||
GLIBC_2.4 shm_open F
|
||||
GLIBC_2.4 shm_unlink F
|
||||
GLIBC_2.4 timer_create F
|
||||
GLIBC_2.4 timer_delete F
|
||||
|
@ -2036,6 +2036,7 @@ GLIBC_2.2 scandir64 F
|
||||
GLIBC_2.2 sem_timedwait F
|
||||
GLIBC_2.2 semctl F
|
||||
GLIBC_2.2 setrlimit F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shmctl F
|
||||
GLIBC_2.2 svc_getreq_common F
|
||||
GLIBC_2.2 svc_getreq_poll F
|
||||
@ -2565,6 +2566,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -15,7 +15,6 @@ GLIBC_2.1 aio_write F
|
||||
GLIBC_2.1 aio_write64 F
|
||||
GLIBC_2.1 lio_listio F
|
||||
GLIBC_2.1 lio_listio64 F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shm_unlink F
|
||||
GLIBC_2.2 timer_create F
|
||||
GLIBC_2.2 timer_delete F
|
||||
|
@ -1787,6 +1787,7 @@ GLIBC_2.18 sgetsgent F
|
||||
GLIBC_2.18 sgetsgent_r F
|
||||
GLIBC_2.18 sgetspent F
|
||||
GLIBC_2.18 sgetspent_r F
|
||||
GLIBC_2.18 shm_open F
|
||||
GLIBC_2.18 shmat F
|
||||
GLIBC_2.18 shmctl F
|
||||
GLIBC_2.18 shmdt F
|
||||
@ -2535,6 +2536,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -26,7 +26,6 @@ GLIBC_2.18 mq_setattr F
|
||||
GLIBC_2.18 mq_timedreceive F
|
||||
GLIBC_2.18 mq_timedsend F
|
||||
GLIBC_2.18 mq_unlink F
|
||||
GLIBC_2.18 shm_open F
|
||||
GLIBC_2.18 shm_unlink F
|
||||
GLIBC_2.18 timer_create F
|
||||
GLIBC_2.18 timer_delete F
|
||||
|
@ -1787,6 +1787,7 @@ GLIBC_2.18 sgetsgent F
|
||||
GLIBC_2.18 sgetsgent_r F
|
||||
GLIBC_2.18 sgetspent F
|
||||
GLIBC_2.18 sgetspent_r F
|
||||
GLIBC_2.18 shm_open F
|
||||
GLIBC_2.18 shmat F
|
||||
GLIBC_2.18 shmctl F
|
||||
GLIBC_2.18 shmdt F
|
||||
@ -2532,6 +2533,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -26,7 +26,6 @@ GLIBC_2.18 mq_setattr F
|
||||
GLIBC_2.18 mq_timedreceive F
|
||||
GLIBC_2.18 mq_timedsend F
|
||||
GLIBC_2.18 mq_unlink F
|
||||
GLIBC_2.18 shm_open F
|
||||
GLIBC_2.18 shm_unlink F
|
||||
GLIBC_2.18 timer_create F
|
||||
GLIBC_2.18 timer_delete F
|
||||
|
@ -1942,6 +1942,7 @@ GLIBC_2.2 semctl F
|
||||
GLIBC_2.2 sendfile F
|
||||
GLIBC_2.2 setrlimit64 F
|
||||
GLIBC_2.2 setutxent F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shmctl F
|
||||
GLIBC_2.2 sighold F
|
||||
GLIBC_2.2 sigignore F
|
||||
@ -2530,6 +2531,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -15,7 +15,6 @@ GLIBC_2.2 aio_write F
|
||||
GLIBC_2.2 aio_write64 F
|
||||
GLIBC_2.2 lio_listio F
|
||||
GLIBC_2.2 lio_listio64 F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shm_unlink F
|
||||
GLIBC_2.2 timer_create F
|
||||
GLIBC_2.2 timer_delete F
|
||||
|
@ -1940,6 +1940,7 @@ GLIBC_2.2 semctl F
|
||||
GLIBC_2.2 sendfile F
|
||||
GLIBC_2.2 setrlimit64 F
|
||||
GLIBC_2.2 setutxent F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shmctl F
|
||||
GLIBC_2.2 sighold F
|
||||
GLIBC_2.2 sigignore F
|
||||
@ -2528,6 +2529,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -1939,6 +1939,7 @@ GLIBC_2.2 sem_wait F
|
||||
GLIBC_2.2 sendfile F
|
||||
GLIBC_2.2 setrlimit64 F
|
||||
GLIBC_2.2 setutxent F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 sighold F
|
||||
GLIBC_2.2 sigignore F
|
||||
GLIBC_2.2 sigqueue F
|
||||
@ -2536,6 +2537,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -15,7 +15,6 @@ GLIBC_2.2 aio_write F
|
||||
GLIBC_2.2 aio_write64 F
|
||||
GLIBC_2.2 lio_listio F
|
||||
GLIBC_2.2 lio_listio64 F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shm_unlink F
|
||||
GLIBC_2.2 timer_create F
|
||||
GLIBC_2.2 timer_delete F
|
||||
|
@ -1935,6 +1935,7 @@ GLIBC_2.2 sem_wait F
|
||||
GLIBC_2.2 sendfile F
|
||||
GLIBC_2.2 setrlimit64 F
|
||||
GLIBC_2.2 setutxent F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 sighold F
|
||||
GLIBC_2.2 sigignore F
|
||||
GLIBC_2.2 sigqueue F
|
||||
@ -2454,6 +2455,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -15,7 +15,6 @@ GLIBC_2.2 aio_write F
|
||||
GLIBC_2.2 aio_write64 F
|
||||
GLIBC_2.2 lio_listio F
|
||||
GLIBC_2.2 lio_listio64 F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shm_unlink F
|
||||
GLIBC_2.2 timer_create F
|
||||
GLIBC_2.2 timer_delete F
|
||||
|
@ -1830,6 +1830,7 @@ GLIBC_2.21 sgetsgent F
|
||||
GLIBC_2.21 sgetsgent_r F
|
||||
GLIBC_2.21 sgetspent F
|
||||
GLIBC_2.21 sgetspent_r F
|
||||
GLIBC_2.21 shm_open F
|
||||
GLIBC_2.21 shmat F
|
||||
GLIBC_2.21 shmctl F
|
||||
GLIBC_2.21 shmdt F
|
||||
@ -2574,6 +2575,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -26,7 +26,6 @@ GLIBC_2.21 mq_setattr F
|
||||
GLIBC_2.21 mq_timedreceive F
|
||||
GLIBC_2.21 mq_timedsend F
|
||||
GLIBC_2.21 mq_unlink F
|
||||
GLIBC_2.21 shm_open F
|
||||
GLIBC_2.21 shm_unlink F
|
||||
GLIBC_2.21 timer_create F
|
||||
GLIBC_2.21 timer_delete F
|
||||
|
@ -2041,6 +2041,7 @@ GLIBC_2.2 scandir64 F
|
||||
GLIBC_2.2 sem_timedwait F
|
||||
GLIBC_2.2 semctl F
|
||||
GLIBC_2.2 setrlimit F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shmctl F
|
||||
GLIBC_2.2 svc_getreq_common F
|
||||
GLIBC_2.2 svc_getreq_poll F
|
||||
@ -2592,6 +2593,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -15,7 +15,6 @@ GLIBC_2.1 aio_write F
|
||||
GLIBC_2.1 aio_write64 F
|
||||
GLIBC_2.1 lio_listio F
|
||||
GLIBC_2.1 lio_listio64 F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shm_unlink F
|
||||
GLIBC_2.2 timer_create F
|
||||
GLIBC_2.2 timer_delete F
|
||||
|
@ -2045,6 +2045,7 @@ GLIBC_2.2 scandir64 F
|
||||
GLIBC_2.2 sem_timedwait F
|
||||
GLIBC_2.2 semctl F
|
||||
GLIBC_2.2 setrlimit F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shmctl F
|
||||
GLIBC_2.2 svc_getreq_common F
|
||||
GLIBC_2.2 svc_getreq_poll F
|
||||
@ -2625,6 +2626,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -1684,6 +1684,7 @@ GLIBC_2.3 setvbuf F
|
||||
GLIBC_2.3 setxattr F
|
||||
GLIBC_2.3 sgetspent F
|
||||
GLIBC_2.3 sgetspent_r F
|
||||
GLIBC_2.3 shm_open F
|
||||
GLIBC_2.3 shmat F
|
||||
GLIBC_2.3 shmctl F
|
||||
GLIBC_2.3 shmdt F
|
||||
@ -2362,6 +2363,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -15,7 +15,6 @@ GLIBC_2.3 aio_write F
|
||||
GLIBC_2.3 aio_write64 F
|
||||
GLIBC_2.3 lio_listio F
|
||||
GLIBC_2.3 lio_listio64 F
|
||||
GLIBC_2.3 shm_open F
|
||||
GLIBC_2.3 shm_unlink F
|
||||
GLIBC_2.3 timer_create F
|
||||
GLIBC_2.3 timer_delete F
|
||||
|
@ -1871,6 +1871,7 @@ GLIBC_2.17 sgetsgent F
|
||||
GLIBC_2.17 sgetsgent_r F
|
||||
GLIBC_2.17 sgetspent F
|
||||
GLIBC_2.17 sgetspent_r F
|
||||
GLIBC_2.17 shm_open F
|
||||
GLIBC_2.17 shmat F
|
||||
GLIBC_2.17 shmctl F
|
||||
GLIBC_2.17 shmdt F
|
||||
@ -2661,6 +2662,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -26,7 +26,6 @@ GLIBC_2.17 mq_setattr F
|
||||
GLIBC_2.17 mq_timedreceive F
|
||||
GLIBC_2.17 mq_timedsend F
|
||||
GLIBC_2.17 mq_unlink F
|
||||
GLIBC_2.17 shm_open F
|
||||
GLIBC_2.17 shm_unlink F
|
||||
GLIBC_2.17 timer_create F
|
||||
GLIBC_2.17 timer_delete F
|
||||
|
@ -1730,6 +1730,7 @@ GLIBC_2.33 sgetsgent F
|
||||
GLIBC_2.33 sgetsgent_r F
|
||||
GLIBC_2.33 sgetspent F
|
||||
GLIBC_2.33 sgetspent_r F
|
||||
GLIBC_2.33 shm_open F
|
||||
GLIBC_2.33 shmat F
|
||||
GLIBC_2.33 shmctl F
|
||||
GLIBC_2.33 shmdt F
|
||||
@ -2226,6 +2227,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -26,7 +26,6 @@ GLIBC_2.33 mq_setattr F
|
||||
GLIBC_2.33 mq_timedreceive F
|
||||
GLIBC_2.33 mq_timedsend F
|
||||
GLIBC_2.33 mq_unlink F
|
||||
GLIBC_2.33 shm_open F
|
||||
GLIBC_2.33 shm_unlink F
|
||||
GLIBC_2.33 timer_create F
|
||||
GLIBC_2.33 timer_delete F
|
||||
|
@ -1777,6 +1777,7 @@ GLIBC_2.27 sgetsgent F
|
||||
GLIBC_2.27 sgetsgent_r F
|
||||
GLIBC_2.27 sgetspent F
|
||||
GLIBC_2.27 sgetspent_r F
|
||||
GLIBC_2.27 shm_open F
|
||||
GLIBC_2.27 shmat F
|
||||
GLIBC_2.27 shmctl F
|
||||
GLIBC_2.27 shmdt F
|
||||
@ -2426,6 +2427,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -26,7 +26,6 @@ GLIBC_2.27 mq_setattr F
|
||||
GLIBC_2.27 mq_timedreceive F
|
||||
GLIBC_2.27 mq_timedsend F
|
||||
GLIBC_2.27 mq_unlink F
|
||||
GLIBC_2.27 shm_open F
|
||||
GLIBC_2.27 shm_unlink F
|
||||
GLIBC_2.27 timer_create F
|
||||
GLIBC_2.27 timer_delete F
|
||||
|
@ -2039,6 +2039,7 @@ GLIBC_2.2 scandir64 F
|
||||
GLIBC_2.2 sem_timedwait F
|
||||
GLIBC_2.2 semctl F
|
||||
GLIBC_2.2 setrlimit F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shmctl F
|
||||
GLIBC_2.2 svc_getreq_common F
|
||||
GLIBC_2.2 svc_getreq_poll F
|
||||
@ -2590,6 +2591,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -15,7 +15,6 @@ GLIBC_2.1 aio_write F
|
||||
GLIBC_2.1 aio_write64 F
|
||||
GLIBC_2.1 lio_listio F
|
||||
GLIBC_2.1 lio_listio64 F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shm_unlink F
|
||||
GLIBC_2.2 timer_create F
|
||||
GLIBC_2.2 timer_delete F
|
||||
|
@ -1572,6 +1572,7 @@ GLIBC_2.2 setutxent F
|
||||
GLIBC_2.2 setvbuf F
|
||||
GLIBC_2.2 sgetspent F
|
||||
GLIBC_2.2 sgetspent_r F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shmat F
|
||||
GLIBC_2.2 shmctl F
|
||||
GLIBC_2.2 shmdt F
|
||||
@ -2399,6 +2400,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -15,7 +15,6 @@ GLIBC_2.2 aio_write F
|
||||
GLIBC_2.2 aio_write64 F
|
||||
GLIBC_2.2 lio_listio F
|
||||
GLIBC_2.2 lio_listio64 F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shm_unlink F
|
||||
GLIBC_2.2 timer_create F
|
||||
GLIBC_2.2 timer_delete F
|
||||
|
@ -1559,6 +1559,7 @@ GLIBC_2.2 setutxent F
|
||||
GLIBC_2.2 setvbuf F
|
||||
GLIBC_2.2 sgetspent F
|
||||
GLIBC_2.2 sgetspent_r F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shmat F
|
||||
GLIBC_2.2 shmctl F
|
||||
GLIBC_2.2 shmdt F
|
||||
@ -2445,6 +2446,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -15,7 +15,6 @@ GLIBC_2.1 aio_write F
|
||||
GLIBC_2.1 aio_write64 F
|
||||
GLIBC_2.1 lio_listio F
|
||||
GLIBC_2.1 lio_listio64 F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shm_unlink F
|
||||
GLIBC_2.2 timer_create F
|
||||
GLIBC_2.2 timer_delete F
|
||||
|
@ -1559,6 +1559,7 @@ GLIBC_2.2 setutxent F
|
||||
GLIBC_2.2 setvbuf F
|
||||
GLIBC_2.2 sgetspent F
|
||||
GLIBC_2.2 sgetspent_r F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shmat F
|
||||
GLIBC_2.2 shmctl F
|
||||
GLIBC_2.2 shmdt F
|
||||
@ -2442,6 +2443,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -15,7 +15,6 @@ GLIBC_2.1 aio_write F
|
||||
GLIBC_2.1 aio_write64 F
|
||||
GLIBC_2.1 lio_listio F
|
||||
GLIBC_2.1 lio_listio64 F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shm_unlink F
|
||||
GLIBC_2.2 timer_create F
|
||||
GLIBC_2.2 timer_delete F
|
||||
|
@ -2034,6 +2034,7 @@ GLIBC_2.2 ruserok_af F
|
||||
GLIBC_2.2 scandir64 F
|
||||
GLIBC_2.2 sem_timedwait F
|
||||
GLIBC_2.2 semctl F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shmctl F
|
||||
GLIBC_2.2 svc_getreq_common F
|
||||
GLIBC_2.2 svc_getreq_poll F
|
||||
@ -2583,6 +2584,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -15,7 +15,6 @@ GLIBC_2.1 aio_write F
|
||||
GLIBC_2.1 aio_write64 F
|
||||
GLIBC_2.1 lio_listio F
|
||||
GLIBC_2.1 lio_listio64 F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shm_unlink F
|
||||
GLIBC_2.2 timer_create F
|
||||
GLIBC_2.2 timer_delete F
|
||||
|
@ -1602,6 +1602,7 @@ GLIBC_2.2 setutxent F
|
||||
GLIBC_2.2 setvbuf F
|
||||
GLIBC_2.2 sgetspent F
|
||||
GLIBC_2.2 sgetspent_r F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shmat F
|
||||
GLIBC_2.2 shmctl F
|
||||
GLIBC_2.2 shmdt F
|
||||
@ -2419,6 +2420,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -15,7 +15,6 @@ GLIBC_2.1 aio_write F
|
||||
GLIBC_2.1 aio_write64 F
|
||||
GLIBC_2.1 lio_listio F
|
||||
GLIBC_2.1 lio_listio64 F
|
||||
GLIBC_2.2 shm_open F
|
||||
GLIBC_2.2 shm_unlink F
|
||||
GLIBC_2.2 timer_create F
|
||||
GLIBC_2.2 timer_delete F
|
||||
|
@ -1569,6 +1569,7 @@ GLIBC_2.2.5 setutxent F
|
||||
GLIBC_2.2.5 setvbuf F
|
||||
GLIBC_2.2.5 sgetspent F
|
||||
GLIBC_2.2.5 sgetspent_r F
|
||||
GLIBC_2.2.5 shm_open F
|
||||
GLIBC_2.2.5 shmat F
|
||||
GLIBC_2.2.5 shmctl F
|
||||
GLIBC_2.2.5 shmdt F
|
||||
@ -2377,6 +2378,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -15,7 +15,6 @@ GLIBC_2.2.5 aio_write F
|
||||
GLIBC_2.2.5 aio_write64 F
|
||||
GLIBC_2.2.5 lio_listio F
|
||||
GLIBC_2.2.5 lio_listio64 F
|
||||
GLIBC_2.2.5 shm_open F
|
||||
GLIBC_2.2.5 shm_unlink F
|
||||
GLIBC_2.2.5 timer_create F
|
||||
GLIBC_2.2.5 timer_delete F
|
||||
|
@ -1789,6 +1789,7 @@ GLIBC_2.16 sgetsgent F
|
||||
GLIBC_2.16 sgetsgent_r F
|
||||
GLIBC_2.16 sgetspent F
|
||||
GLIBC_2.16 sgetspent_r F
|
||||
GLIBC_2.16 shm_open F
|
||||
GLIBC_2.16 shmat F
|
||||
GLIBC_2.16 shmctl F
|
||||
GLIBC_2.16 shmdt F
|
||||
@ -2480,6 +2481,7 @@ GLIBC_2.34 sem_timedwait F
|
||||
GLIBC_2.34 sem_trywait F
|
||||
GLIBC_2.34 sem_unlink F
|
||||
GLIBC_2.34 sem_wait F
|
||||
GLIBC_2.34 shm_open F
|
||||
GLIBC_2.34 thrd_create F
|
||||
GLIBC_2.34 thrd_detach F
|
||||
GLIBC_2.34 thrd_exit F
|
||||
|
@ -26,7 +26,6 @@ GLIBC_2.16 mq_setattr F
|
||||
GLIBC_2.16 mq_timedreceive F
|
||||
GLIBC_2.16 mq_timedsend F
|
||||
GLIBC_2.16 mq_unlink F
|
||||
GLIBC_2.16 shm_open F
|
||||
GLIBC_2.16 shm_unlink F
|
||||
GLIBC_2.16 timer_create F
|
||||
GLIBC_2.16 timer_delete F
|
||||
|
Loading…
x
Reference in New Issue
Block a user