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:53 +0200 |
commit | 5633541d3b9a78fc5283af3a2f3e824126ef785a (patch) | |
tree | 2e05b6c9b7c90fa49f9e2a5b65296b58c8a9d2c4 /sysdeps/unix/sysv/linux/riscv | |
parent | 990c8ffd3a83232365f346413e394d4431875899 (diff) | |
download | glibc-5633541d3b9a78fc5283af3a2f3e824126ef785a.tar.gz glibc-5633541d3b9a78fc5283af3a2f3e824126ef785a.tar.xz glibc-5633541d3b9a78fc5283af3a2f3e824126ef785a.zip |
nptl: Move sem_trywait, sem_wait into libc
The symbols were 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, 8 insertions, 4 deletions
diff --git a/sysdeps/unix/sysv/linux/riscv/rv32/libc.abilist b/sysdeps/unix/sysv/linux/riscv/rv32/libc.abilist index 8ab5057cd4..d728cd5b08 100644 --- a/sysdeps/unix/sysv/linux/riscv/rv32/libc.abilist +++ b/sysdeps/unix/sysv/linux/riscv/rv32/libc.abilist @@ -1611,7 +1611,9 @@ 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_trywait F GLIBC_2.33 sem_unlink F +GLIBC_2.33 sem_wait F GLIBC_2.33 semctl F GLIBC_2.33 semget F GLIBC_2.33 semop F @@ -2124,7 +2126,9 @@ 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_trywait F GLIBC_2.34 sem_unlink F +GLIBC_2.34 sem_wait 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 74798905a5..0609c51490 100644 --- a/sysdeps/unix/sysv/linux/riscv/rv32/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/riscv/rv32/libpthread.abilist @@ -42,8 +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_trywait F -GLIBC_2.33 sem_wait F GLIBC_2.33 thrd_create F GLIBC_2.33 thrd_detach F GLIBC_2.33 thrd_join F diff --git a/sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist b/sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist index 8fefa4c141..9b28a43977 100644 --- a/sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist +++ b/sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist @@ -1659,7 +1659,9 @@ 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_trywait F GLIBC_2.27 sem_unlink F +GLIBC_2.27 sem_wait F GLIBC_2.27 semctl F GLIBC_2.27 semget F GLIBC_2.27 semop F @@ -2324,7 +2326,9 @@ 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_trywait F GLIBC_2.34 sem_unlink F +GLIBC_2.34 sem_wait 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 8eb140f7ac..2eab03d3c5 100644 --- a/sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist @@ -41,8 +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_trywait F -GLIBC_2.27 sem_wait F GLIBC_2.28 thrd_create F GLIBC_2.28 thrd_detach F GLIBC_2.28 thrd_join F |