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/pthread_spin_init.c | |
parent | c7b1cd4ad100d01f3202a44ec3b84b87bea5ef19 (diff) | |
download | glibc-ce4b3b7befc1010a4be0294d28984d0af47b7bc2.tar glibc-ce4b3b7befc1010a4be0294d28984d0af47b7bc2.tar.gz glibc-ce4b3b7befc1010a4be0294d28984d0af47b7bc2.tar.bz2 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/pthread_spin_init.c')
-rw-r--r-- | nptl/pthread_spin_init.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/nptl/pthread_spin_init.c b/nptl/pthread_spin_init.c index 470a6fab63..c6a51477bf 100644 --- a/nptl/pthread_spin_init.c +++ b/nptl/pthread_spin_init.c @@ -18,11 +18,17 @@ <https://www.gnu.org/licenses/>. */ #include "pthreadP.h" +#include <shlib-compat.h> int -pthread_spin_init (pthread_spinlock_t *lock, int pshared) +__pthread_spin_init (pthread_spinlock_t *lock, int pshared) { /* Relaxed MO is fine because this is an initializing store. */ atomic_store_relaxed (lock, 0); return 0; } +versioned_symbol (libc, __pthread_spin_init, pthread_spin_init, GLIBC_2_34); + +#if OTHER_SHLIB_COMPAT (libpthread, GLIBC_2_2, GLIBC_2_34) +compat_symbol (libpthread, __pthread_spin_init, pthread_spin_init, GLIBC_2_2); +#endif |