diff options
Diffstat (limited to 'sysdeps')
62 files changed, 85 insertions, 31 deletions
diff --git a/sysdeps/pthread/sem_unlink.c b/sysdeps/pthread/sem_unlink.c index 1f06a55..c6f8934 100644 --- a/sysdeps/pthread/sem_unlink.c +++ b/sysdeps/pthread/sem_unlink.c @@ -24,8 +24,13 @@ #include "semaphoreP.h" #include <shm-directory.h> +#if !PTHREAD_IN_LIBC +/* The private name is not exported from libc. */ +# define __unlink unlink +#endif + int -sem_unlink (const char *name) +__sem_unlink (const char *name) { struct shmdir_name dirname; if (__shm_get_name (&dirname, name, true) != 0) @@ -35,8 +40,16 @@ sem_unlink (const char *name) } /* Now try removing it. */ - int ret = unlink (dirname.name); + int ret = __unlink (dirname.name); if (ret < 0 && errno == EPERM) __set_errno (EACCES); return ret; } +#if PTHREAD_IN_LIBC +versioned_symbol (libc, __sem_unlink, sem_unlink, GLIBC_2_34); +# if OTHER_SHLIB_COMPAT (libpthread, GLIBC_2_1_1, GLIBC_2_34) +compat_symbol (libpthread, __sem_unlink, sem_unlink, GLIBC_2_1_1); +# endif +#else /* !PTHREAD_IN_LIBC */ +strong_alias (__sem_unlink, sem_unlink) +#endif diff --git a/sysdeps/unix/sysv/linux/aarch64/libc.abilist b/sysdeps/unix/sysv/linux/aarch64/libc.abilist index 8b0c531..e675ac7 100644 --- a/sysdeps/unix/sysv/linux/aarch64/libc.abilist +++ b/sysdeps/unix/sysv/linux/aarch64/libc.abilist @@ -1667,6 +1667,7 @@ GLIBC_2.17 sem_init F GLIBC_2.17 sem_open F GLIBC_2.17 sem_post F GLIBC_2.17 sem_timedwait F +GLIBC_2.17 sem_unlink F GLIBC_2.17 semctl F GLIBC_2.17 semget F GLIBC_2.17 semop F @@ -2362,6 +2363,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/aarch64/libpthread.abilist b/sysdeps/unix/sysv/linux/aarch64/libpthread.abilist index da05cd4..590f08b 100644 --- a/sysdeps/unix/sysv/linux/aarch64/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/aarch64/libpthread.abilist @@ -40,7 +40,6 @@ GLIBC_2.17 pthread_sigqueue F GLIBC_2.17 pthread_timedjoin_np F GLIBC_2.17 pthread_tryjoin_np F GLIBC_2.17 sem_trywait F -GLIBC_2.17 sem_unlink F GLIBC_2.17 sem_wait F GLIBC_2.18 pthread_getattr_default_np F GLIBC_2.18 pthread_setattr_default_np F diff --git a/sysdeps/unix/sysv/linux/alpha/libc.abilist b/sysdeps/unix/sysv/linux/alpha/libc.abilist index b09f69d..75956e8 100644 --- a/sysdeps/unix/sysv/linux/alpha/libc.abilist +++ b/sysdeps/unix/sysv/linux/alpha/libc.abilist @@ -1731,6 +1731,7 @@ GLIBC_2.1.1 imaxabs F GLIBC_2.1.1 imaxdiv F GLIBC_2.1.1 sem_close F GLIBC_2.1.1 sem_open F +GLIBC_2.1.1 sem_unlink F GLIBC_2.1.1 strchrnul F GLIBC_2.1.1 xdr_hyper F GLIBC_2.1.1 xdr_int64_t F @@ -2447,6 +2448,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/alpha/libpthread.abilist b/sysdeps/unix/sysv/linux/alpha/libpthread.abilist index 64f7b97..6540830 100644 --- a/sysdeps/unix/sysv/linux/alpha/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/alpha/libpthread.abilist @@ -22,7 +22,7 @@ GLIBC_2.1 pthread_getconcurrency F GLIBC_2.1 pthread_setconcurrency F GLIBC_2.1 sem_trywait F GLIBC_2.1 sem_wait F -GLIBC_2.1.1 sem_unlink F +GLIBC_2.1.1 __libpthread_version_placeholder F GLIBC_2.1.2 __libpthread_version_placeholder F GLIBC_2.11 pthread_sigqueue F GLIBC_2.12 pthread_getname_np F diff --git a/sysdeps/unix/sysv/linux/arc/libc.abilist b/sysdeps/unix/sysv/linux/arc/libc.abilist index c703369..c79b7e2 100644 --- a/sysdeps/unix/sysv/linux/arc/libc.abilist +++ b/sysdeps/unix/sysv/linux/arc/libc.abilist @@ -1609,6 +1609,7 @@ GLIBC_2.32 sem_init F GLIBC_2.32 sem_open F GLIBC_2.32 sem_post F GLIBC_2.32 sem_timedwait F +GLIBC_2.32 sem_unlink F GLIBC_2.32 semctl F GLIBC_2.32 semget F GLIBC_2.32 semop F @@ -2121,6 +2122,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/arc/libpthread.abilist b/sysdeps/unix/sysv/linux/arc/libpthread.abilist index d11ab85..7aa79d0 100644 --- a/sysdeps/unix/sysv/linux/arc/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/arc/libpthread.abilist @@ -43,7 +43,6 @@ GLIBC_2.32 pthread_sigqueue F GLIBC_2.32 pthread_timedjoin_np F GLIBC_2.32 pthread_tryjoin_np F GLIBC_2.32 sem_trywait F -GLIBC_2.32 sem_unlink F GLIBC_2.32 sem_wait F GLIBC_2.32 thrd_create F GLIBC_2.32 thrd_detach F diff --git a/sysdeps/unix/sysv/linux/arm/be/libc.abilist b/sysdeps/unix/sysv/linux/arm/be/libc.abilist index e11fc0e..56ab4ef 100644 --- a/sysdeps/unix/sysv/linux/arm/be/libc.abilist +++ b/sysdeps/unix/sysv/linux/arm/be/libc.abilist @@ -261,6 +261,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F @@ -1853,6 +1854,7 @@ GLIBC_2.4 sem_init F GLIBC_2.4 sem_open F GLIBC_2.4 sem_post F GLIBC_2.4 sem_timedwait F +GLIBC_2.4 sem_unlink F GLIBC_2.4 semctl F GLIBC_2.4 semget F GLIBC_2.4 semop F diff --git a/sysdeps/unix/sysv/linux/arm/be/libpthread.abilist b/sysdeps/unix/sysv/linux/arm/be/libpthread.abilist index 7dc7413..1e819c1 100644 --- a/sysdeps/unix/sysv/linux/arm/be/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/arm/be/libpthread.abilist @@ -48,5 +48,4 @@ GLIBC_2.4 pthread_setschedprio F GLIBC_2.4 pthread_timedjoin_np F GLIBC_2.4 pthread_tryjoin_np F GLIBC_2.4 sem_trywait F -GLIBC_2.4 sem_unlink F GLIBC_2.4 sem_wait F diff --git a/sysdeps/unix/sysv/linux/arm/le/libc.abilist b/sysdeps/unix/sysv/linux/arm/le/libc.abilist index 234b8bd..30147a1 100644 --- a/sysdeps/unix/sysv/linux/arm/le/libc.abilist +++ b/sysdeps/unix/sysv/linux/arm/le/libc.abilist @@ -258,6 +258,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F @@ -1850,6 +1851,7 @@ GLIBC_2.4 sem_init F GLIBC_2.4 sem_open F GLIBC_2.4 sem_post F GLIBC_2.4 sem_timedwait F +GLIBC_2.4 sem_unlink F GLIBC_2.4 semctl F GLIBC_2.4 semget F GLIBC_2.4 semop F diff --git a/sysdeps/unix/sysv/linux/arm/le/libpthread.abilist b/sysdeps/unix/sysv/linux/arm/le/libpthread.abilist index 7dc7413..1e819c1 100644 --- a/sysdeps/unix/sysv/linux/arm/le/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/arm/le/libpthread.abilist @@ -48,5 +48,4 @@ GLIBC_2.4 pthread_setschedprio F GLIBC_2.4 pthread_timedjoin_np F GLIBC_2.4 pthread_tryjoin_np F GLIBC_2.4 sem_trywait F -GLIBC_2.4 sem_unlink F GLIBC_2.4 sem_wait F diff --git a/sysdeps/unix/sysv/linux/csky/libc.abilist b/sysdeps/unix/sysv/linux/csky/libc.abilist index f024d01..ea7c890 100644 --- a/sysdeps/unix/sysv/linux/csky/libc.abilist +++ b/sysdeps/unix/sysv/linux/csky/libc.abilist @@ -1670,6 +1670,7 @@ GLIBC_2.29 sem_init F GLIBC_2.29 sem_open F GLIBC_2.29 sem_post F GLIBC_2.29 sem_timedwait F +GLIBC_2.29 sem_unlink F GLIBC_2.29 semctl F GLIBC_2.29 semget F GLIBC_2.29 semop F @@ -2305,6 +2306,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/csky/libpthread.abilist b/sysdeps/unix/sysv/linux/csky/libpthread.abilist index f3286d7..3579a0b 100644 --- a/sysdeps/unix/sysv/linux/csky/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/csky/libpthread.abilist @@ -42,7 +42,6 @@ GLIBC_2.29 pthread_sigqueue F GLIBC_2.29 pthread_timedjoin_np F GLIBC_2.29 pthread_tryjoin_np F GLIBC_2.29 sem_trywait F -GLIBC_2.29 sem_unlink F GLIBC_2.29 sem_wait F GLIBC_2.29 thrd_create F GLIBC_2.29 thrd_detach F diff --git a/sysdeps/unix/sysv/linux/hppa/libc.abilist b/sysdeps/unix/sysv/linux/hppa/libc.abilist index 1b718c8..2cf3b16 100644 --- a/sysdeps/unix/sysv/linux/hppa/libc.abilist +++ b/sysdeps/unix/sysv/linux/hppa/libc.abilist @@ -1459,6 +1459,7 @@ GLIBC_2.2 sem_init F GLIBC_2.2 sem_open F GLIBC_2.2 sem_post F GLIBC_2.2 sem_timedwait F +GLIBC_2.2 sem_unlink F GLIBC_2.2 semctl F GLIBC_2.2 semget F GLIBC_2.2 semop F @@ -2256,6 +2257,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/hppa/libpthread.abilist b/sysdeps/unix/sysv/linux/hppa/libpthread.abilist index e6282e2..30f7add 100644 --- a/sysdeps/unix/sysv/linux/hppa/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/hppa/libpthread.abilist @@ -32,7 +32,6 @@ GLIBC_2.2 pthread_getcpuclockid F GLIBC_2.2 pthread_join F GLIBC_2.2 pthread_setconcurrency F GLIBC_2.2 sem_trywait F -GLIBC_2.2 sem_unlink F GLIBC_2.2 sem_wait F GLIBC_2.2.3 __libpthread_version_placeholder F GLIBC_2.2.6 __libpthread_version_placeholder F diff --git a/sysdeps/unix/sysv/linux/i386/libc.abilist b/sysdeps/unix/sysv/linux/i386/libc.abilist index bd3ca5e..9596c15 100644 --- a/sysdeps/unix/sysv/linux/i386/libc.abilist +++ b/sysdeps/unix/sysv/linux/i386/libc.abilist @@ -1737,6 +1737,7 @@ GLIBC_2.1.1 imaxabs F GLIBC_2.1.1 imaxdiv F GLIBC_2.1.1 sem_close F GLIBC_2.1.1 sem_open F +GLIBC_2.1.1 sem_unlink F GLIBC_2.1.1 strchrnul F GLIBC_2.1.1 xdr_hyper F GLIBC_2.1.1 xdr_int64_t F @@ -2437,6 +2438,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/i386/libpthread.abilist b/sysdeps/unix/sysv/linux/i386/libpthread.abilist index c94979d..c7a1d8f 100644 --- a/sysdeps/unix/sysv/linux/i386/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/i386/libpthread.abilist @@ -22,7 +22,7 @@ GLIBC_2.1 pthread_getconcurrency F GLIBC_2.1 pthread_setconcurrency F GLIBC_2.1 sem_trywait F GLIBC_2.1 sem_wait F -GLIBC_2.1.1 sem_unlink F +GLIBC_2.1.1 __libpthread_version_placeholder F GLIBC_2.1.2 __libpthread_version_placeholder F GLIBC_2.11 pthread_sigqueue F GLIBC_2.12 pthread_getname_np F diff --git a/sysdeps/unix/sysv/linux/ia64/libc.abilist b/sysdeps/unix/sysv/linux/ia64/libc.abilist index fc8ff27..3c2929f 100644 --- a/sysdeps/unix/sysv/linux/ia64/libc.abilist +++ b/sysdeps/unix/sysv/linux/ia64/libc.abilist @@ -1480,6 +1480,7 @@ GLIBC_2.2 sem_init F GLIBC_2.2 sem_open F GLIBC_2.2 sem_post F GLIBC_2.2 sem_timedwait F +GLIBC_2.2 sem_unlink F GLIBC_2.2 semctl F GLIBC_2.2 semget F GLIBC_2.2 semop F @@ -2290,6 +2291,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/ia64/libpthread.abilist b/sysdeps/unix/sysv/linux/ia64/libpthread.abilist index 4573250..225bfd0 100644 --- a/sysdeps/unix/sysv/linux/ia64/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/ia64/libpthread.abilist @@ -32,7 +32,6 @@ GLIBC_2.2 pthread_getcpuclockid F GLIBC_2.2 pthread_join F GLIBC_2.2 pthread_setconcurrency F GLIBC_2.2 sem_trywait F -GLIBC_2.2 sem_unlink F GLIBC_2.2 sem_wait F GLIBC_2.2.3 __libpthread_version_placeholder F GLIBC_2.2.6 __libpthread_version_placeholder F diff --git a/sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist b/sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist index 26e9938..9f96082 100644 --- a/sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist +++ b/sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist @@ -262,6 +262,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F @@ -1833,6 +1834,7 @@ GLIBC_2.4 sem_init F GLIBC_2.4 sem_open F GLIBC_2.4 sem_post F GLIBC_2.4 sem_timedwait F +GLIBC_2.4 sem_unlink F GLIBC_2.4 semctl F GLIBC_2.4 semget F GLIBC_2.4 semop F diff --git a/sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist b/sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist index 7dc7413..1e819c1 100644 --- a/sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist @@ -48,5 +48,4 @@ GLIBC_2.4 pthread_setschedprio F GLIBC_2.4 pthread_timedjoin_np F GLIBC_2.4 pthread_tryjoin_np F GLIBC_2.4 sem_trywait F -GLIBC_2.4 sem_unlink F GLIBC_2.4 sem_wait F diff --git a/sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist b/sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist index b181524..0579e64 100644 --- a/sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist +++ b/sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist @@ -1693,6 +1693,7 @@ GLIBC_2.1.1 imaxabs F GLIBC_2.1.1 imaxdiv F GLIBC_2.1.1 sem_close F GLIBC_2.1.1 sem_open F +GLIBC_2.1.1 sem_unlink F GLIBC_2.1.1 strchrnul F GLIBC_2.1.1 xdr_hyper F GLIBC_2.1.1 xdr_int64_t F @@ -2380,6 +2381,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/m68k/m680x0/libpthread.abilist b/sysdeps/unix/sysv/linux/m68k/m680x0/libpthread.abilist index c94979d..c7a1d8f 100644 --- a/sysdeps/unix/sysv/linux/m68k/m680x0/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/m68k/m680x0/libpthread.abilist @@ -22,7 +22,7 @@ GLIBC_2.1 pthread_getconcurrency F GLIBC_2.1 pthread_setconcurrency F GLIBC_2.1 sem_trywait F GLIBC_2.1 sem_wait F -GLIBC_2.1.1 sem_unlink F +GLIBC_2.1.1 __libpthread_version_placeholder F GLIBC_2.1.2 __libpthread_version_placeholder F GLIBC_2.11 pthread_sigqueue F GLIBC_2.12 pthread_getname_np F diff --git a/sysdeps/unix/sysv/linux/microblaze/be/libc.abilist b/sysdeps/unix/sysv/linux/microblaze/be/libc.abilist index b474f03..b01ad81 100644 --- a/sysdeps/unix/sysv/linux/microblaze/be/libc.abilist +++ b/sysdeps/unix/sysv/linux/microblaze/be/libc.abilist @@ -1669,6 +1669,7 @@ GLIBC_2.18 sem_init F GLIBC_2.18 sem_open F GLIBC_2.18 sem_post F GLIBC_2.18 sem_timedwait F +GLIBC_2.18 sem_unlink F GLIBC_2.18 semctl F GLIBC_2.18 semget F GLIBC_2.18 semop F @@ -2356,6 +2357,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/microblaze/be/libpthread.abilist b/sysdeps/unix/sysv/linux/microblaze/be/libpthread.abilist index 5048344..d7bacba 100644 --- a/sysdeps/unix/sysv/linux/microblaze/be/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/microblaze/be/libpthread.abilist @@ -42,7 +42,6 @@ GLIBC_2.18 pthread_sigqueue F GLIBC_2.18 pthread_timedjoin_np F GLIBC_2.18 pthread_tryjoin_np F GLIBC_2.18 sem_trywait F -GLIBC_2.18 sem_unlink F GLIBC_2.18 sem_wait F GLIBC_2.28 thrd_create F GLIBC_2.28 thrd_detach F diff --git a/sysdeps/unix/sysv/linux/microblaze/le/libc.abilist b/sysdeps/unix/sysv/linux/microblaze/le/libc.abilist index 121a228..42b2911 100644 --- a/sysdeps/unix/sysv/linux/microblaze/le/libc.abilist +++ b/sysdeps/unix/sysv/linux/microblaze/le/libc.abilist @@ -1669,6 +1669,7 @@ GLIBC_2.18 sem_init F GLIBC_2.18 sem_open F GLIBC_2.18 sem_post F GLIBC_2.18 sem_timedwait F +GLIBC_2.18 sem_unlink F GLIBC_2.18 semctl F GLIBC_2.18 semget F GLIBC_2.18 semop F @@ -2353,6 +2354,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/microblaze/le/libpthread.abilist b/sysdeps/unix/sysv/linux/microblaze/le/libpthread.abilist index 5048344..d7bacba 100644 --- a/sysdeps/unix/sysv/linux/microblaze/le/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/microblaze/le/libpthread.abilist @@ -42,7 +42,6 @@ GLIBC_2.18 pthread_sigqueue F GLIBC_2.18 pthread_timedjoin_np F GLIBC_2.18 pthread_tryjoin_np F GLIBC_2.18 sem_trywait F -GLIBC_2.18 sem_unlink F GLIBC_2.18 sem_wait F GLIBC_2.28 thrd_create F GLIBC_2.28 thrd_detach F diff --git a/sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist b/sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist index 699105f..a6aebaa 100644 --- a/sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist +++ b/sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist @@ -1899,6 +1899,7 @@ GLIBC_2.2 sem_init F GLIBC_2.2 sem_open F GLIBC_2.2 sem_post F GLIBC_2.2 sem_timedwait F +GLIBC_2.2 sem_unlink F GLIBC_2.2 semctl F GLIBC_2.2 sendfile F GLIBC_2.2 setrlimit64 F @@ -2343,6 +2344,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/mips/mips32/libpthread.abilist b/sysdeps/unix/sysv/linux/mips/mips32/libpthread.abilist index f9cca8a..c7256ad 100644 --- a/sysdeps/unix/sysv/linux/mips/mips32/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/mips/mips32/libpthread.abilist @@ -35,7 +35,6 @@ GLIBC_2.2 pthread_getconcurrency F GLIBC_2.2 pthread_getcpuclockid F GLIBC_2.2 pthread_setconcurrency F GLIBC_2.2 sem_trywait F -GLIBC_2.2 sem_unlink F GLIBC_2.2 sem_wait F GLIBC_2.2.3 __libpthread_version_placeholder F GLIBC_2.2.6 __libpthread_version_placeholder F diff --git a/sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist b/sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist index 3cc970e..efa3d9e 100644 --- a/sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist +++ b/sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist @@ -1897,6 +1897,7 @@ GLIBC_2.2 sem_init F GLIBC_2.2 sem_open F GLIBC_2.2 sem_post F GLIBC_2.2 sem_timedwait F +GLIBC_2.2 sem_unlink F GLIBC_2.2 semctl F GLIBC_2.2 sendfile F GLIBC_2.2 setrlimit64 F @@ -2341,6 +2342,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/mips/mips64/libpthread.abilist b/sysdeps/unix/sysv/linux/mips/mips64/libpthread.abilist index f9cca8a..c7256ad 100644 --- a/sysdeps/unix/sysv/linux/mips/mips64/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/mips/mips64/libpthread.abilist @@ -35,7 +35,6 @@ GLIBC_2.2 pthread_getconcurrency F GLIBC_2.2 pthread_getcpuclockid F GLIBC_2.2 pthread_setconcurrency F GLIBC_2.2 sem_trywait F -GLIBC_2.2 sem_unlink F GLIBC_2.2 sem_wait F GLIBC_2.2.3 __libpthread_version_placeholder F GLIBC_2.2.6 __libpthread_version_placeholder F diff --git a/sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist b/sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist index 6a19210..ddda41e 100644 --- a/sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist +++ b/sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist @@ -1897,6 +1897,7 @@ GLIBC_2.2 sem_init F GLIBC_2.2 sem_open F GLIBC_2.2 sem_post F GLIBC_2.2 sem_timedwait F +GLIBC_2.2 sem_unlink F GLIBC_2.2 sendfile F GLIBC_2.2 setrlimit64 F GLIBC_2.2 setutxent F @@ -2349,6 +2350,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist b/sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist index cc6230b..4c95f24 100644 --- a/sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist +++ b/sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist @@ -1893,6 +1893,7 @@ GLIBC_2.2 sem_init F GLIBC_2.2 sem_open F GLIBC_2.2 sem_post F GLIBC_2.2 sem_timedwait F +GLIBC_2.2 sem_unlink F GLIBC_2.2 sendfile F GLIBC_2.2 setrlimit64 F GLIBC_2.2 setutxent F @@ -2343,6 +2344,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/nios2/libc.abilist b/sysdeps/unix/sysv/linux/nios2/libc.abilist index dc6734b..7918943 100644 --- a/sysdeps/unix/sysv/linux/nios2/libc.abilist +++ b/sysdeps/unix/sysv/linux/nios2/libc.abilist @@ -1712,6 +1712,7 @@ GLIBC_2.21 sem_init F GLIBC_2.21 sem_open F GLIBC_2.21 sem_post F GLIBC_2.21 sem_timedwait F +GLIBC_2.21 sem_unlink F GLIBC_2.21 semctl F GLIBC_2.21 semget F GLIBC_2.21 semop F @@ -2395,6 +2396,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/nios2/libpthread.abilist b/sysdeps/unix/sysv/linux/nios2/libpthread.abilist index 2c6366d..8c753b8 100644 --- a/sysdeps/unix/sysv/linux/nios2/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/nios2/libpthread.abilist @@ -42,7 +42,6 @@ GLIBC_2.21 pthread_sigqueue F GLIBC_2.21 pthread_timedjoin_np F GLIBC_2.21 pthread_tryjoin_np F GLIBC_2.21 sem_trywait F -GLIBC_2.21 sem_unlink F GLIBC_2.21 sem_wait F GLIBC_2.28 thrd_create F GLIBC_2.28 thrd_detach F diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist index de268d2..edd4348 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist @@ -1698,6 +1698,7 @@ GLIBC_2.1.1 imaxabs F GLIBC_2.1.1 imaxdiv F GLIBC_2.1.1 sem_close F GLIBC_2.1.1 sem_open F +GLIBC_2.1.1 sem_unlink F GLIBC_2.1.1 strchrnul F GLIBC_2.1.1 xdr_hyper F GLIBC_2.1.1 xdr_int64_t F @@ -2407,6 +2408,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/libpthread.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc32/libpthread.abilist index 2cb64d1..83968d0 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/libpthread.abilist @@ -22,7 +22,7 @@ GLIBC_2.1 pthread_getconcurrency F GLIBC_2.1 pthread_setconcurrency F GLIBC_2.1 sem_trywait F GLIBC_2.1 sem_wait F -GLIBC_2.1.1 sem_unlink F +GLIBC_2.1.1 __libpthread_version_placeholder F GLIBC_2.1.2 __libpthread_version_placeholder F GLIBC_2.11 pthread_sigqueue F GLIBC_2.12 pthread_getname_np F diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist index 3fa7926..e9f1ee7 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist @@ -1698,6 +1698,7 @@ GLIBC_2.1.1 imaxabs F GLIBC_2.1.1 imaxdiv F GLIBC_2.1.1 sem_close F GLIBC_2.1.1 sem_open F +GLIBC_2.1.1 sem_unlink F GLIBC_2.1.1 strchrnul F GLIBC_2.1.1 xdr_hyper F GLIBC_2.1.1 xdr_int64_t F @@ -2440,6 +2441,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/be/libc.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc64/be/libc.abilist index 69b1017..5ad9f6e 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/be/libc.abilist +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/be/libc.abilist @@ -1584,6 +1584,7 @@ GLIBC_2.3 sem_init F GLIBC_2.3 sem_open F GLIBC_2.3 sem_post F GLIBC_2.3 sem_timedwait F +GLIBC_2.3 sem_unlink F GLIBC_2.3 semctl F GLIBC_2.3 semget F GLIBC_2.3 semop F @@ -2257,6 +2258,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/be/libpthread.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc64/be/libpthread.abilist index d83baa5..b6a7fc4 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/be/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/be/libpthread.abilist @@ -35,7 +35,6 @@ GLIBC_2.3 pthread_getcpuclockid F GLIBC_2.3 pthread_join F GLIBC_2.3 pthread_setconcurrency F GLIBC_2.3 sem_trywait F -GLIBC_2.3 sem_unlink F GLIBC_2.3 sem_wait F GLIBC_2.3.2 __libpthread_version_placeholder F GLIBC_2.3.3 __pthread_register_cancel F diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/le/libc.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc64/le/libc.abilist index f92dc81..861a221 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/le/libc.abilist +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/le/libc.abilist @@ -1755,6 +1755,7 @@ GLIBC_2.17 sem_init F GLIBC_2.17 sem_open F GLIBC_2.17 sem_post F GLIBC_2.17 sem_timedwait F +GLIBC_2.17 sem_unlink F GLIBC_2.17 semctl F GLIBC_2.17 semget F GLIBC_2.17 semop F @@ -2558,6 +2559,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/le/libpthread.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc64/le/libpthread.abilist index da05cd4..590f08b 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/le/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/le/libpthread.abilist @@ -40,7 +40,6 @@ GLIBC_2.17 pthread_sigqueue F GLIBC_2.17 pthread_timedjoin_np F GLIBC_2.17 pthread_tryjoin_np F GLIBC_2.17 sem_trywait F -GLIBC_2.17 sem_unlink F GLIBC_2.17 sem_wait F GLIBC_2.18 pthread_getattr_default_np F GLIBC_2.18 pthread_setattr_default_np F diff --git a/sysdeps/unix/sysv/linux/riscv/rv32/libc.abilist b/sysdeps/unix/sysv/linux/riscv/rv32/libc.abilist index a49ebb9..8ab5057 100644 --- a/sysdeps/unix/sysv/linux/riscv/rv32/libc.abilist +++ b/sysdeps/unix/sysv/linux/riscv/rv32/libc.abilist @@ -1611,6 +1611,7 @@ GLIBC_2.33 sem_init F GLIBC_2.33 sem_open F GLIBC_2.33 sem_post F GLIBC_2.33 sem_timedwait F +GLIBC_2.33 sem_unlink F GLIBC_2.33 semctl F GLIBC_2.33 semget F GLIBC_2.33 semop F @@ -2123,6 +2124,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/riscv/rv32/libpthread.abilist b/sysdeps/unix/sysv/linux/riscv/rv32/libpthread.abilist index 95c2cc9..7479890 100644 --- a/sysdeps/unix/sysv/linux/riscv/rv32/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/riscv/rv32/libpthread.abilist @@ -43,7 +43,6 @@ GLIBC_2.33 pthread_sigqueue F GLIBC_2.33 pthread_timedjoin_np F GLIBC_2.33 pthread_tryjoin_np F GLIBC_2.33 sem_trywait F -GLIBC_2.33 sem_unlink F GLIBC_2.33 sem_wait F GLIBC_2.33 thrd_create F GLIBC_2.33 thrd_detach F diff --git a/sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist b/sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist index d402856..8fefa4c 100644 --- a/sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist +++ b/sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist @@ -1659,6 +1659,7 @@ GLIBC_2.27 sem_init F GLIBC_2.27 sem_open F GLIBC_2.27 sem_post F GLIBC_2.27 sem_timedwait F +GLIBC_2.27 sem_unlink F GLIBC_2.27 semctl F GLIBC_2.27 semget F GLIBC_2.27 semop F @@ -2323,6 +2324,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist b/sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist index efbdd69..8eb140f 100644 --- a/sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist @@ -42,7 +42,6 @@ GLIBC_2.27 pthread_sigqueue F GLIBC_2.27 pthread_timedjoin_np F GLIBC_2.27 pthread_tryjoin_np F GLIBC_2.27 sem_trywait F -GLIBC_2.27 sem_unlink F GLIBC_2.27 sem_wait F GLIBC_2.28 thrd_create F GLIBC_2.28 thrd_detach F diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist b/sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist index 4ad65ae..40ef3db 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist +++ b/sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist @@ -1690,6 +1690,7 @@ GLIBC_2.1.1 imaxabs F GLIBC_2.1.1 imaxdiv F GLIBC_2.1.1 sem_close F GLIBC_2.1.1 sem_open F +GLIBC_2.1.1 sem_unlink F GLIBC_2.1.1 strchrnul F GLIBC_2.1.1 xdr_hyper F GLIBC_2.1.1 xdr_int64_t F @@ -2405,6 +2406,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist b/sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist index c9352ac..f59ac6c 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist @@ -22,7 +22,7 @@ GLIBC_2.1 pthread_getconcurrency F GLIBC_2.1 pthread_setconcurrency F GLIBC_2.1 sem_trywait F GLIBC_2.1 sem_wait F -GLIBC_2.1.1 sem_unlink F +GLIBC_2.1.1 __libpthread_version_placeholder F GLIBC_2.1.2 __libpthread_version_placeholder F GLIBC_2.11 pthread_sigqueue F GLIBC_2.12 pthread_getname_np F diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist b/sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist index f7be213..6985f26 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist +++ b/sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist @@ -1477,6 +1477,7 @@ GLIBC_2.2 sem_init F GLIBC_2.2 sem_open F GLIBC_2.2 sem_post F GLIBC_2.2 sem_timedwait F +GLIBC_2.2 sem_unlink F GLIBC_2.2 semctl F GLIBC_2.2 semget F GLIBC_2.2 semop F @@ -2294,6 +2295,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist b/sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist index 58a2d4f..a2f0c99 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist @@ -33,7 +33,6 @@ GLIBC_2.2 pthread_getcpuclockid F GLIBC_2.2 pthread_join F GLIBC_2.2 pthread_setconcurrency F GLIBC_2.2 sem_trywait F -GLIBC_2.2 sem_unlink F GLIBC_2.2 sem_wait F GLIBC_2.2.3 __libpthread_version_placeholder F GLIBC_2.2.6 __libpthread_version_placeholder F diff --git a/sysdeps/unix/sysv/linux/sh/be/libc.abilist b/sysdeps/unix/sysv/linux/sh/be/libc.abilist index e526f2f..d2e19c0 100644 --- a/sysdeps/unix/sysv/linux/sh/be/libc.abilist +++ b/sysdeps/unix/sysv/linux/sh/be/libc.abilist @@ -1463,6 +1463,7 @@ GLIBC_2.2 sem_init F GLIBC_2.2 sem_open F GLIBC_2.2 sem_post F GLIBC_2.2 sem_timedwait F +GLIBC_2.2 sem_unlink F GLIBC_2.2 semctl F GLIBC_2.2 semget F GLIBC_2.2 semop F @@ -2263,6 +2264,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/sh/be/libpthread.abilist b/sysdeps/unix/sysv/linux/sh/be/libpthread.abilist index e6282e2..30f7add 100644 --- a/sysdeps/unix/sysv/linux/sh/be/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/sh/be/libpthread.abilist @@ -32,7 +32,6 @@ GLIBC_2.2 pthread_getcpuclockid F GLIBC_2.2 pthread_join F GLIBC_2.2 pthread_setconcurrency F GLIBC_2.2 sem_trywait F -GLIBC_2.2 sem_unlink F GLIBC_2.2 sem_wait F GLIBC_2.2.3 __libpthread_version_placeholder F GLIBC_2.2.6 __libpthread_version_placeholder F diff --git a/sysdeps/unix/sysv/linux/sh/le/libc.abilist b/sysdeps/unix/sysv/linux/sh/le/libc.abilist index 063ba98..622785c 100644 --- a/sysdeps/unix/sysv/linux/sh/le/libc.abilist +++ b/sysdeps/unix/sysv/linux/sh/le/libc.abilist @@ -1463,6 +1463,7 @@ GLIBC_2.2 sem_init F GLIBC_2.2 sem_open F GLIBC_2.2 sem_post F GLIBC_2.2 sem_timedwait F +GLIBC_2.2 sem_unlink F GLIBC_2.2 semctl F GLIBC_2.2 semget F GLIBC_2.2 semop F @@ -2260,6 +2261,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/sh/le/libpthread.abilist b/sysdeps/unix/sysv/linux/sh/le/libpthread.abilist index e6282e2..30f7add 100644 --- a/sysdeps/unix/sysv/linux/sh/le/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/sh/le/libpthread.abilist @@ -32,7 +32,6 @@ GLIBC_2.2 pthread_getcpuclockid F GLIBC_2.2 pthread_join F GLIBC_2.2 pthread_setconcurrency F GLIBC_2.2 sem_trywait F -GLIBC_2.2 sem_unlink F GLIBC_2.2 sem_wait F GLIBC_2.2.3 __libpthread_version_placeholder F GLIBC_2.2.6 __libpthread_version_placeholder F diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist b/sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist index 382cc65..d590f83 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist +++ b/sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist @@ -1691,6 +1691,7 @@ GLIBC_2.1.1 imaxabs F GLIBC_2.1.1 imaxdiv F GLIBC_2.1.1 sem_close F GLIBC_2.1.1 sem_open F +GLIBC_2.1.1 sem_unlink F GLIBC_2.1.1 strchrnul F GLIBC_2.1.1 xdr_hyper F GLIBC_2.1.1 xdr_int64_t F @@ -2396,6 +2397,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/libpthread.abilist b/sysdeps/unix/sysv/linux/sparc/sparc32/libpthread.abilist index 64f7b97..6540830 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc32/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/sparc/sparc32/libpthread.abilist @@ -22,7 +22,7 @@ GLIBC_2.1 pthread_getconcurrency F GLIBC_2.1 pthread_setconcurrency F GLIBC_2.1 sem_trywait F GLIBC_2.1 sem_wait F -GLIBC_2.1.1 sem_unlink F +GLIBC_2.1.1 __libpthread_version_placeholder F GLIBC_2.1.2 __libpthread_version_placeholder F GLIBC_2.11 pthread_sigqueue F GLIBC_2.12 pthread_getname_np F diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist b/sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist index 5f9fcd8..ec86c87 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist @@ -1506,6 +1506,7 @@ GLIBC_2.2 sem_init F GLIBC_2.2 sem_open F GLIBC_2.2 sem_post F GLIBC_2.2 sem_timedwait F +GLIBC_2.2 sem_unlink F GLIBC_2.2 semctl F GLIBC_2.2 semget F GLIBC_2.2 semop F @@ -2311,6 +2312,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/libpthread.abilist b/sysdeps/unix/sysv/linux/sparc/sparc64/libpthread.abilist index 4573250..225bfd0 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/libpthread.abilist @@ -32,7 +32,6 @@ GLIBC_2.2 pthread_getcpuclockid F GLIBC_2.2 pthread_join F GLIBC_2.2 pthread_setconcurrency F GLIBC_2.2 sem_trywait F -GLIBC_2.2 sem_unlink F GLIBC_2.2 sem_wait F GLIBC_2.2.3 __libpthread_version_placeholder F GLIBC_2.2.6 __libpthread_version_placeholder F diff --git a/sysdeps/unix/sysv/linux/x86_64/64/libc.abilist b/sysdeps/unix/sysv/linux/x86_64/64/libc.abilist index 1d34f91..4bd8834 100644 --- a/sysdeps/unix/sysv/linux/x86_64/64/libc.abilist +++ b/sysdeps/unix/sysv/linux/x86_64/64/libc.abilist @@ -1474,6 +1474,7 @@ GLIBC_2.2.5 sem_init F GLIBC_2.2.5 sem_open F GLIBC_2.2.5 sem_post F GLIBC_2.2.5 sem_timedwait F +GLIBC_2.2.5 sem_unlink F GLIBC_2.2.5 semctl F GLIBC_2.2.5 semget F GLIBC_2.2.5 semop F @@ -2272,6 +2273,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/x86_64/64/libpthread.abilist b/sysdeps/unix/sysv/linux/x86_64/64/libpthread.abilist index dc598f1..6fc3699 100644 --- a/sysdeps/unix/sysv/linux/x86_64/64/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/x86_64/64/libpthread.abilist @@ -32,7 +32,6 @@ GLIBC_2.2.5 pthread_getcpuclockid F GLIBC_2.2.5 pthread_join F GLIBC_2.2.5 pthread_setconcurrency F GLIBC_2.2.5 sem_trywait F -GLIBC_2.2.5 sem_unlink F GLIBC_2.2.5 sem_wait F GLIBC_2.2.6 __libpthread_version_placeholder F GLIBC_2.28 thrd_create F diff --git a/sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist b/sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist index 7101a84..7d7cc64 100644 --- a/sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist +++ b/sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist @@ -1673,6 +1673,7 @@ GLIBC_2.16 sem_init F GLIBC_2.16 sem_open F GLIBC_2.16 sem_post F GLIBC_2.16 sem_timedwait F +GLIBC_2.16 sem_unlink F GLIBC_2.16 semctl F GLIBC_2.16 semget F GLIBC_2.16 semop F @@ -2377,6 +2378,7 @@ GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F GLIBC_2.34 sem_post F GLIBC_2.34 sem_timedwait F +GLIBC_2.34 sem_unlink F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/x86_64/x32/libpthread.abilist b/sysdeps/unix/sysv/linux/x86_64/x32/libpthread.abilist index b5ade1e..ab481eb 100644 --- a/sysdeps/unix/sysv/linux/x86_64/x32/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/x86_64/x32/libpthread.abilist @@ -40,7 +40,6 @@ GLIBC_2.16 pthread_sigqueue F GLIBC_2.16 pthread_timedjoin_np F GLIBC_2.16 pthread_tryjoin_np F GLIBC_2.16 sem_trywait F -GLIBC_2.16 sem_unlink F GLIBC_2.16 sem_wait F GLIBC_2.18 pthread_getattr_default_np F GLIBC_2.18 pthread_setattr_default_np F |