diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-05-05 17:15:57 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-05-05 17:19:38 +0200 |
commit | 0b7d48d1062e4383b4a78e0bb78c5f0f29479780 (patch) | |
tree | 7f68d1ddf402078c5ba49416a076b7875fb18b75 /sysdeps/unix/sysv/linux/m68k | |
parent | 19cc20ef2e8b9e09429741a3108e55c50758a273 (diff) | |
download | glibc-0b7d48d1062e4383b4a78e0bb78c5f0f29479780.tar glibc-0b7d48d1062e4383b4a78e0bb78c5f0f29479780.tar.gz glibc-0b7d48d1062e4383b4a78e0bb78c5f0f29479780.tar.bz2 glibc-0b7d48d1062e4383b4a78e0bb78c5f0f29479780.zip |
nptl: Move sem_close, sem_open into libc
The symbols were moved using move-symbol-to-libc.py.
Both functions are moved at the same time because they depend
on internal functions in sysdeps/pthread/sem_routines.c, which
are moved in this commit as well. Additional hidden prototypes
are required to avoid check-localplt failures.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'sysdeps/unix/sysv/linux/m68k')
4 files changed, 8 insertions, 4 deletions
diff --git a/sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist b/sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist index 1999dff3de..4e78f128a6 100644 --- a/sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist +++ b/sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist @@ -255,6 +255,8 @@ GLIBC_2.34 pthread_spin_trylock F GLIBC_2.34 pthread_spin_unlock F GLIBC_2.34 pthread_testcancel F GLIBC_2.34 sem_clockwait F +GLIBC_2.34 sem_close F +GLIBC_2.34 sem_open F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F @@ -1819,6 +1821,8 @@ GLIBC_2.4 seed48 F GLIBC_2.4 seed48_r F GLIBC_2.4 seekdir F GLIBC_2.4 select F +GLIBC_2.4 sem_close F +GLIBC_2.4 sem_open 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 e56c397379..4a8b77148b 100644 --- a/sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist @@ -47,11 +47,9 @@ GLIBC_2.4 pthread_setconcurrency F GLIBC_2.4 pthread_setschedprio F GLIBC_2.4 pthread_timedjoin_np F GLIBC_2.4 pthread_tryjoin_np F -GLIBC_2.4 sem_close F GLIBC_2.4 sem_destroy F GLIBC_2.4 sem_getvalue F 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_trywait F diff --git a/sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist b/sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist index a55e7e103f..5cf6a8bf30 100644 --- a/sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist +++ b/sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist @@ -1683,6 +1683,8 @@ GLIBC_2.1.1 getutmp F GLIBC_2.1.1 getutmpx F 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 strchrnul F GLIBC_2.1.1 xdr_hyper F GLIBC_2.1.1 xdr_int64_t F @@ -2362,6 +2364,8 @@ GLIBC_2.34 pthread_spin_trylock F GLIBC_2.34 pthread_spin_unlock F GLIBC_2.34 pthread_testcancel F GLIBC_2.34 sem_clockwait F +GLIBC_2.34 sem_close F +GLIBC_2.34 sem_open 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 30bc064058..be013d96e2 100644 --- a/sysdeps/unix/sysv/linux/m68k/m680x0/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/m68k/m680x0/libpthread.abilist @@ -30,8 +30,6 @@ GLIBC_2.1 sem_init F GLIBC_2.1 sem_post F GLIBC_2.1 sem_trywait F GLIBC_2.1 sem_wait 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.2 __libpthread_version_placeholder F GLIBC_2.11 pthread_sigqueue F |