From ce4b3b7befc1010a4be0294d28984d0af47b7bc2 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Thu, 22 Apr 2021 15:18:12 +0200 Subject: 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. --- sysdeps/powerpc/nptl/pthread_spin_unlock.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'sysdeps/powerpc/nptl') diff --git a/sysdeps/powerpc/nptl/pthread_spin_unlock.c b/sysdeps/powerpc/nptl/pthread_spin_unlock.c index fcea37b..86bbe4d 100644 --- a/sysdeps/powerpc/nptl/pthread_spin_unlock.c +++ b/sysdeps/powerpc/nptl/pthread_spin_unlock.c @@ -18,10 +18,18 @@ #include "pthreadP.h" #include +#include int -pthread_spin_unlock (pthread_spinlock_t *lock) +__pthread_spin_unlock (pthread_spinlock_t *lock) { atomic_store_release (lock, 0); return 0; } +versioned_symbol (libc, __pthread_spin_unlock, pthread_spin_unlock, + GLIBC_2_34); + +#if OTHER_SHLIB_COMPAT (libpthread, GLIBC_2_2, GLIBC_2_34) +compat_symbol (libpthread, __pthread_spin_unlock, pthread_spin_unlock, + GLIBC_2_2); +#endif -- cgit v1.1