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:50 +0200 |
commit | 990c8ffd3a83232365f346413e394d4431875899 (patch) | |
tree | 24b41f70bcee7f885eca1d8ff50f44f0b0aea9e1 /sysdeps/unix/sysv/linux/riscv | |
parent | 018c75dcb1ee93f3ff0d3d9cbdf1fe48aa630315 (diff) | |
download | glibc-990c8ffd3a83232365f346413e394d4431875899.tar.gz glibc-990c8ffd3a83232365f346413e394d4431875899.tar.xz glibc-990c8ffd3a83232365f346413e394d4431875899.zip |
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 <adhemerval.zanella@linaro.org>
Diffstat (limited to 'sysdeps/unix/sysv/linux/riscv')
4 files changed, 4 insertions, 2 deletions
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 |