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:43 +0200 |
commit | 61878689c228cdf324d609b98db3314d8a81f24d (patch) | |
tree | 1831b8815f9a3f84ddd65731314314c1ada057d9 /sysdeps/unix/sysv/linux/riscv | |
parent | 4b729cca87ea2f14bcb526588f992cdd931ef362 (diff) | |
download | glibc-61878689c228cdf324d609b98db3314d8a81f24d.tar glibc-61878689c228cdf324d609b98db3314d8a81f24d.tar.gz glibc-61878689c228cdf324d609b98db3314d8a81f24d.tar.bz2 glibc-61878689c228cdf324d609b98db3314d8a81f24d.zip |
nptl: Move sem_getvalue 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 bc03c5e4b9..6b328b5123 100644 --- a/sysdeps/unix/sysv/linux/riscv/rv32/libc.abilist +++ b/sysdeps/unix/sysv/linux/riscv/rv32/libc.abilist @@ -1606,6 +1606,7 @@ GLIBC_2.33 select F GLIBC_2.33 sem_clockwait F GLIBC_2.33 sem_close F GLIBC_2.33 sem_destroy F +GLIBC_2.33 sem_getvalue F GLIBC_2.33 sem_open F GLIBC_2.33 semctl F GLIBC_2.33 semget F @@ -2114,6 +2115,7 @@ GLIBC_2.34 pthread_testcancel F GLIBC_2.34 sem_clockwait F GLIBC_2.34 sem_close F GLIBC_2.34 sem_destroy F +GLIBC_2.34 sem_getvalue F GLIBC_2.34 sem_open F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F diff --git a/sysdeps/unix/sysv/linux/riscv/rv32/libpthread.abilist b/sysdeps/unix/sysv/linux/riscv/rv32/libpthread.abilist index 5eaf5ecee2..b342a05a1b 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_getvalue F GLIBC_2.33 sem_init F GLIBC_2.33 sem_post F GLIBC_2.33 sem_timedwait F diff --git a/sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist b/sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist index 51d78601e5..c89fef6612 100644 --- a/sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist +++ b/sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist @@ -1654,6 +1654,7 @@ GLIBC_2.27 seekdir F GLIBC_2.27 select F GLIBC_2.27 sem_close F GLIBC_2.27 sem_destroy F +GLIBC_2.27 sem_getvalue F GLIBC_2.27 sem_open F GLIBC_2.27 semctl F GLIBC_2.27 semget F @@ -2314,6 +2315,7 @@ GLIBC_2.34 pthread_testcancel F GLIBC_2.34 sem_clockwait F GLIBC_2.34 sem_close F GLIBC_2.34 sem_destroy F +GLIBC_2.34 sem_getvalue F GLIBC_2.34 sem_open F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F diff --git a/sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist b/sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist index 49a79bfbee..fe091c6884 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_getvalue F GLIBC_2.27 sem_init F GLIBC_2.27 sem_post F GLIBC_2.27 sem_timedwait F |