From: Florian Weimer Date: Wed, 5 May 2021 15:15:57 +0000 (+0200) Subject: nptl: Move sem_unlink into libc X-Git-Tag: glibc-2.34~496 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=990c8ffd3a83232365f346413e394d4431875899;p=glibc.git nptl: Move sem_unlink into libc The symbol was moved using scripts/move-symbol-to-libc.py. A small adjust to the sem_unlink implementation is necessary to avoid a check-localplt failure. A placeholder symbol to keep the GLIBC_2.1.1 version alive in libpthread is added with this commit. Reviewed-by: Adhemerval Zanella --- diff --git a/nptl/Makefile b/nptl/Makefile index 9f73cf2434..665cd1f3d1 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -159,6 +159,7 @@ routines = \ sem_post \ sem_routines \ sem_timedwait \ + sem_unlink \ tpp \ unwind \ @@ -210,7 +211,6 @@ libpthread-routines = \ pthread_sigqueue \ pthread_timedjoin \ pthread_tryjoin \ - sem_unlink \ sem_wait \ vars \ version \ diff --git a/nptl/Versions b/nptl/Versions index f19c2355f1..20997aa706 100644 --- a/nptl/Versions +++ b/nptl/Versions @@ -92,6 +92,7 @@ libc { GLIBC_2.1.1 { sem_close; sem_open; + sem_unlink; } GLIBC_2.2 { __pthread_rwlock_destroy; @@ -269,6 +270,7 @@ libc { sem_open; sem_post; sem_timedwait; + sem_unlink; thrd_exit; tss_create; tss_delete; @@ -353,7 +355,7 @@ libpthread { } GLIBC_2.1.1 { - sem_unlink; + __libpthread_version_placeholder; } GLIBC_2.1.2 { diff --git a/nptl/libpthread-compat.c b/nptl/libpthread-compat.c index 7b0427aaed..401fa6ad34 100644 --- a/nptl/libpthread-compat.c +++ b/nptl/libpthread-compat.c @@ -36,6 +36,10 @@ __libpthread_version_placeholder_1 (void) version or later, the placeholder symbol is not needed because there are plenty of other symbols which populate those later versions. */ +#if (SHLIB_COMPAT (libpthread, GLIBC_2_1_1, GLIBC_2_1_2)) +compat_symbol (libpthread, __libpthread_version_placeholder_1, + __libpthread_version_placeholder, GLIBC_2_1_1); +#endif #if (SHLIB_COMPAT (libpthread, GLIBC_2_1_2, GLIBC_2_2)) compat_symbol (libpthread, __libpthread_version_placeholder_1, __libpthread_version_placeholder, GLIBC_2_1_2); diff --git a/sysdeps/pthread/sem_unlink.c b/sysdeps/pthread/sem_unlink.c index 1f06a55b8e..c6f89349e5 100644 --- a/sysdeps/pthread/sem_unlink.c +++ b/sysdeps/pthread/sem_unlink.c @@ -24,8 +24,13 @@ #include "semaphoreP.h" #include +#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 8b0c5316cf..e675ac7029 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 da05cd4d59..590f08ba58 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 b09f69df75..75956e8a21 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 64f7b97cfd..6540830d09 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 c703369097..c79b7e2147 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 d11ab85312..7aa79d0d68 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 e11fc0ea24..56ab4efd89 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 7dc74135e3..1e819c1173 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 234b8bdf65..30147a1068 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 7dc74135e3..1e819c1173 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 f024d01b8b..ea7c890fdb 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 f3286d7d92..3579a0bfbb 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 1b718c80f5..2cf3b168c9 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 e6282e233c..30f7add73e 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 bd3ca5e3a3..9596c159b1 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 c94979df12..c7a1d8f0ff 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 fc8ff27661..3c2929f993 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 4573250afa..225bfd0e6a 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 26e993823c..9f96082efe 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 7dc74135e3..1e819c1173 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 b181524c7e..0579e642db 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 c94979df12..c7a1d8f0ff 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 b474f0342e..b01ad81d58 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 50483447c3..d7bacba551 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 121a22824f..42b2911649 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 50483447c3..d7bacba551 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 699105f6b1..a6aebaa7d0 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 f9cca8a676..c7256adbdb 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 3cc970e4d3..efa3d9e5ec 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 f9cca8a676..c7256adbdb 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 6a192103dd..ddda41ef94 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 cc6230b5c8..4c95f2422c 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 dc6734bedc..7918943ab2 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 2c6366d253..8c753b83c5 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 de268d28c5..edd4348362 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 2cb64d181e..83968d0c97 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 3fa79267e7..e9f1ee7a57 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 69b1017ab7..5ad9f6ecb7 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 d83baa5b40..b6a7fc4e23 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 f92dc81d59..861a221200 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 da05cd4d59..590f08ba58 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 a49ebb9e94..8ab5057cd4 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 95c2cc98ca..74798905a5 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 d40285676a..8fefa4c141 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 efbdd69d5f..8eb140f7ac 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 4ad65aeaee..40ef3db5f9 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 c9352acfff..f59ac6c20d 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 f7be213163..6985f26fcc 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 58a2d4f3ba..a2f0c9965f 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 e526f2f7fb..d2e19c0fc4 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 e6282e233c..30f7add73e 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 063ba98dd4..622785cdc4 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 e6282e233c..30f7add73e 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 382cc65689..d590f83e43 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 64f7b97cfd..6540830d09 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 5f9fcd833f..ec86c87aa1 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 4573250afa..225bfd0e6a 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 1d34f9190d..4bd883471b 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 dc598f1bd8..6fc3699f2c 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 7101a84c2e..7d7cc64d57 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 b5ade1e207..ab481ebe8a 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