diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-04-23 10:11:51 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-04-23 17:06:46 +0200 |
commit | da8e3710d8791f4b7f164ba9eb45b823ada44634 (patch) | |
tree | 0cb74656b1450c82d16331ee8c3a6f281ccbaacd /sysdeps/i386 | |
parent | ce4b3b7befc1010a4be0294d28984d0af47b7bc2 (diff) | |
download | glibc-da8e3710d8791f4b7f164ba9eb45b823ada44634.zip glibc-da8e3710d8791f4b7f164ba9eb45b823ada44634.tar.gz glibc-da8e3710d8791f4b7f164ba9eb45b823ada44634.tar.bz2 |
nptl: Move pthread_spin_lock into libc
The symbol was moved using scripts/move-symbol-to-libc.py.
Diffstat (limited to 'sysdeps/i386')
-rw-r--r-- | sysdeps/i386/nptl/pthread_spin_lock.S | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sysdeps/i386/nptl/pthread_spin_lock.S b/sysdeps/i386/nptl/pthread_spin_lock.S index 985b236..cd10fb4 100644 --- a/sysdeps/i386/nptl/pthread_spin_lock.S +++ b/sysdeps/i386/nptl/pthread_spin_lock.S @@ -16,8 +16,9 @@ <https://www.gnu.org/licenses/>. */ #include <sysdep.h> +#include <shlib-compat.h> -ENTRY (pthread_spin_lock) +ENTRY (__pthread_spin_lock) mov 4(%esp), %eax 1: LOCK decl 0(%eax) @@ -31,4 +32,9 @@ ENTRY (pthread_spin_lock) cmpl $0, 0(%eax) jg 1b jmp 2b -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 |