From 4baf02b33235b7cdcb252bafebc132c66020eedd Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Fri, 23 Apr 2021 10:23:24 +0200 Subject: nptl: Move pthread_spin_trylock into libc The symbol was moved using scripts/move-symbol-to-libc.py. --- sysdeps/alpha/nptl/pthread_spin_trylock.S | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'sysdeps/alpha/nptl/pthread_spin_trylock.S') diff --git a/sysdeps/alpha/nptl/pthread_spin_trylock.S b/sysdeps/alpha/nptl/pthread_spin_trylock.S index ea4a55fef4..31ba50711c 100644 --- a/sysdeps/alpha/nptl/pthread_spin_trylock.S +++ b/sysdeps/alpha/nptl/pthread_spin_trylock.S @@ -16,6 +16,7 @@ License along with the GNU C Library. If not, see . */ +#include #define _ERRNO_H 1 #include @@ -23,9 +24,9 @@ .text .align 4 - .globl pthread_spin_trylock - .ent pthread_spin_trylock -pthread_spin_trylock: + .globl __pthread_spin_trylock + .ent __pthread_spin_trylock +__pthread_spin_trylock: .frame $sp, 0, $26, 0 .prologue 0 @@ -42,4 +43,11 @@ pthread_spin_trylock: 1: ret 2: br 0b - .end pthread_spin_trylock + .end __pthread_spin_trylock +versioned_symbol (libc, __pthread_spin_trylock, pthread_spin_trylock, + GLIBC_2_34) + +#if OTHER_SHLIB_COMPAT (libpthread, GLIBC_2_2, GLIBC_2_34) +compat_symbol (libpthread, __pthread_spin_trylock, pthread_spin_trylock, + GLIBC_2_2) +#endif -- cgit 1.4.1