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 /nptl/Versions | |
parent | 990c8ffd3a83232365f346413e394d4431875899 (diff) | |
download | glibc-5633541d3b9a78fc5283af3a2f3e824126ef785a.tar glibc-5633541d3b9a78fc5283af3a2f3e824126ef785a.tar.gz glibc-5633541d3b9a78fc5283af3a2f3e824126ef785a.tar.bz2 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 'nptl/Versions')
-rw-r--r-- | nptl/Versions | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/nptl/Versions b/nptl/Versions index 20997aa706..b243e380e3 100644 --- a/nptl/Versions +++ b/nptl/Versions @@ -66,6 +66,8 @@ libc { sem_getvalue; sem_init; sem_post; + sem_trywait; + sem_wait; } GLIBC_2.1 { pthread_attr_init; @@ -88,6 +90,8 @@ libc { sem_getvalue; sem_init; sem_post; + sem_trywait; + sem_wait; } GLIBC_2.1.1 { sem_close; @@ -270,7 +274,9 @@ libc { sem_open; sem_post; sem_timedwait; + sem_trywait; sem_unlink; + sem_wait; thrd_exit; tss_create; tss_delete; @@ -336,8 +342,6 @@ libpthread { pthread_detach; pthread_join; pthread_sigmask; - sem_trywait; - sem_wait; } GLIBC_2.1 { @@ -350,8 +354,6 @@ libpthread { pthread_create; pthread_getconcurrency; pthread_setconcurrency; - sem_trywait; - sem_wait; } GLIBC_2.1.1 { |