From da8e3710d8791f4b7f164ba9eb45b823ada44634 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Fri, 23 Apr 2021 10:11:51 +0200 Subject: nptl: Move pthread_spin_lock into libc The symbol was moved using scripts/move-symbol-to-libc.py. --- sysdeps/sparc/sparc64/pthread_spin_lock.S | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'sysdeps/sparc/sparc64') diff --git a/sysdeps/sparc/sparc64/pthread_spin_lock.S b/sysdeps/sparc/sparc64/pthread_spin_lock.S index b8a2fc9fa7..d65bdc58fb 100644 --- a/sysdeps/sparc/sparc64/pthread_spin_lock.S +++ b/sysdeps/sparc/sparc64/pthread_spin_lock.S @@ -16,9 +16,10 @@ . */ #include +#include .text -ENTRY(pthread_spin_lock) +ENTRY(__pthread_spin_lock) 1: ldstub [%o0], %g1 brnz,pn %g1, 2f membar #StoreLoad | #StoreStore @@ -28,4 +29,9 @@ ENTRY(pthread_spin_lock) brnz,pt %g1, 2b membar #LoadLoad ba,a,pt %xcc, 1b -END(pthread_spin_lock) +END(__pthread_spin_lock) +versioned_symbol (libc, __pthread_spin_lock, pthread_spin_lock, GLIBC_2_34) + +#if OTHER_SHLIB_COMPAT (libpthread, GLIBC_2_2, GLIBC_2_34) +compat_symbol (libpthread, __pthread_spin_lock, pthread_spin_lock, GLIBC_2_2) +#endif -- cgit 1.4.1