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 /sysdeps/unix/sysv/linux/sh/be | |
parent | c7b1cd4ad100d01f3202a44ec3b84b87bea5ef19 (diff) | |
download | glibc-ce4b3b7befc1010a4be0294d28984d0af47b7bc2.zip glibc-ce4b3b7befc1010a4be0294d28984d0af47b7bc2.tar.gz glibc-ce4b3b7befc1010a4be0294d28984d0af47b7bc2.tar.bz2 |
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 'sysdeps/unix/sysv/linux/sh/be')
-rw-r--r-- | sysdeps/unix/sysv/linux/sh/be/libc.abilist | 4 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/sh/be/libpthread.abilist | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/sh/be/libc.abilist b/sysdeps/unix/sysv/linux/sh/be/libc.abilist index 0b1acf6..03a06c6 100644 --- a/sysdeps/unix/sysv/linux/sh/be/libc.abilist +++ b/sysdeps/unix/sysv/linux/sh/be/libc.abilist @@ -1325,6 +1325,8 @@ GLIBC_2.2 pthread_setschedparam F GLIBC_2.2 pthread_setspecific F GLIBC_2.2 pthread_sigmask F GLIBC_2.2 pthread_spin_destroy F +GLIBC_2.2 pthread_spin_init F +GLIBC_2.2 pthread_spin_unlock F GLIBC_2.2 ptrace F GLIBC_2.2 ptsname F GLIBC_2.2 ptsname_r F @@ -2180,6 +2182,8 @@ GLIBC_2.34 pthread_rwlock_unlock F GLIBC_2.34 pthread_rwlock_wrlock F GLIBC_2.34 pthread_setspecific F GLIBC_2.34 pthread_spin_destroy F +GLIBC_2.34 pthread_spin_init F +GLIBC_2.34 pthread_spin_unlock F GLIBC_2.4 __confstr_chk F GLIBC_2.4 __fgets_chk F GLIBC_2.4 __fgets_unlocked_chk F diff --git a/sysdeps/unix/sysv/linux/sh/be/libpthread.abilist b/sysdeps/unix/sysv/linux/sh/be/libpthread.abilist index 9125d8f..01c743d 100644 --- a/sysdeps/unix/sysv/linux/sh/be/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/sh/be/libpthread.abilist @@ -49,10 +49,8 @@ GLIBC_2.2 pthread_rwlockattr_init F GLIBC_2.2 pthread_rwlockattr_setkind_np F GLIBC_2.2 pthread_rwlockattr_setpshared F GLIBC_2.2 pthread_setconcurrency F -GLIBC_2.2 pthread_spin_init F GLIBC_2.2 pthread_spin_lock F GLIBC_2.2 pthread_spin_trylock F -GLIBC_2.2 pthread_spin_unlock F GLIBC_2.2 pthread_testcancel F GLIBC_2.2 pthread_yield F GLIBC_2.2 sem_close F |