diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-04-22 15:18:12 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-04-23 17:06:44 +0200 |
commit | ce4b3b7befc1010a4be0294d28984d0af47b7bc2 (patch) | |
tree | 3a098b52827d0ba5ae835bafe65485dfe2b702ec /nptl/Versions | |
parent | c7b1cd4ad100d01f3202a44ec3b84b87bea5ef19 (diff) | |
download | glibc-ce4b3b7befc1010a4be0294d28984d0af47b7bc2.tar.gz glibc-ce4b3b7befc1010a4be0294d28984d0af47b7bc2.tar.xz glibc-ce4b3b7befc1010a4be0294d28984d0af47b7bc2.zip |
nptl: Move pthread_spin_init, Move pthread_spin_unlock into libc
For some architectures, the two functions are aliased, so these symbols need to be moved at the same time. The symbols were moved using scripts/move-symbol-to-libc.py.
Diffstat (limited to 'nptl/Versions')
-rw-r--r-- | nptl/Versions | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/nptl/Versions b/nptl/Versions index 22fd51ef12..8ec1d4bbd2 100644 --- a/nptl/Versions +++ b/nptl/Versions @@ -80,6 +80,8 @@ libc { pthread_mutexattr_getpshared; pthread_mutexattr_setpshared; pthread_spin_destroy; + pthread_spin_init; + pthread_spin_unlock; } GLIBC_2.2.3 { pthread_getattr_np; @@ -181,6 +183,8 @@ libc { pthread_rwlock_wrlock; pthread_setspecific; pthread_spin_destroy; + pthread_spin_init; + pthread_spin_unlock; } GLIBC_PRIVATE { __futex_abstimed_wait64; @@ -312,10 +316,8 @@ libpthread { pthread_getcpuclockid; pthread_rwlock_timedrdlock; pthread_rwlock_timedwrlock; - pthread_spin_init; pthread_spin_lock; pthread_spin_trylock; - pthread_spin_unlock; pthread_yield; sem_timedwait; } |