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:47 +0200 |
commit | 793042c63c511f5280e960108b2f0b13e115245d (patch) | |
tree | 5c2afbb5a1afd55877a90aba20dd12538af4397d /sysdeps/unix/sysv/linux/riscv | |
parent | 1ae60ae74ff43cf7a28bace42d91cb6281bd50fc (diff) | |
download | glibc-793042c63c511f5280e960108b2f0b13e115245d.tar glibc-793042c63c511f5280e960108b2f0b13e115245d.tar.gz glibc-793042c63c511f5280e960108b2f0b13e115245d.tar.bz2 glibc-793042c63c511f5280e960108b2f0b13e115245d.zip |
nptl: Move sem_post into libc
The symbol was moved using scripts/move-symbol-to-libc.py.
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 688d3db6ea..82e7015316 100644 --- a/sysdeps/unix/sysv/linux/riscv/rv32/libc.abilist +++ b/sysdeps/unix/sysv/linux/riscv/rv32/libc.abilist @@ -1609,6 +1609,7 @@ GLIBC_2.33 sem_destroy F GLIBC_2.33 sem_getvalue F GLIBC_2.33 sem_init F GLIBC_2.33 sem_open F +GLIBC_2.33 sem_post F GLIBC_2.33 semctl F GLIBC_2.33 semget F GLIBC_2.33 semop F @@ -2119,6 +2120,7 @@ GLIBC_2.34 sem_destroy F GLIBC_2.34 sem_getvalue F GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F +GLIBC_2.34 sem_post 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 93599c88a2..431e167351 100644 --- a/sysdeps/unix/sysv/linux/riscv/rv32/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/riscv/rv32/libpthread.abilist @@ -42,7 +42,6 @@ GLIBC_2.33 pthread_setschedprio F GLIBC_2.33 pthread_sigqueue F GLIBC_2.33 pthread_timedjoin_np F GLIBC_2.33 pthread_tryjoin_np F -GLIBC_2.33 sem_post F GLIBC_2.33 sem_timedwait F GLIBC_2.33 sem_trywait F GLIBC_2.33 sem_unlink F diff --git a/sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist b/sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist index 6129a9bef6..2617ea6080 100644 --- a/sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist +++ b/sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist @@ -1657,6 +1657,7 @@ GLIBC_2.27 sem_destroy F GLIBC_2.27 sem_getvalue F GLIBC_2.27 sem_init F GLIBC_2.27 sem_open F +GLIBC_2.27 sem_post F GLIBC_2.27 semctl F GLIBC_2.27 semget F GLIBC_2.27 semop F @@ -2319,6 +2320,7 @@ GLIBC_2.34 sem_destroy F GLIBC_2.34 sem_getvalue F GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F +GLIBC_2.34 sem_post 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 215454cc39..b102df08a7 100644 --- a/sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist @@ -41,7 +41,6 @@ GLIBC_2.27 pthread_setschedprio F GLIBC_2.27 pthread_sigqueue F GLIBC_2.27 pthread_timedjoin_np F GLIBC_2.27 pthread_tryjoin_np F -GLIBC_2.27 sem_post F GLIBC_2.27 sem_timedwait F GLIBC_2.27 sem_trywait F GLIBC_2.27 sem_unlink F |