diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-04-23 10:23:24 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-04-23 17:06:48 +0200 |
commit | 4baf02b33235b7cdcb252bafebc132c66020eedd (patch) | |
tree | 7ef1a1e8205d89a0224743f19c15443ce793aead /nptl/Makefile | |
parent | da8e3710d8791f4b7f164ba9eb45b823ada44634 (diff) | |
download | glibc-4baf02b33235b7cdcb252bafebc132c66020eedd.tar glibc-4baf02b33235b7cdcb252bafebc132c66020eedd.tar.gz glibc-4baf02b33235b7cdcb252bafebc132c66020eedd.tar.bz2 glibc-4baf02b33235b7cdcb252bafebc132c66020eedd.zip |
nptl: Move pthread_spin_trylock into libc
The symbol was moved using scripts/move-symbol-to-libc.py.
Diffstat (limited to 'nptl/Makefile')
-rw-r--r-- | nptl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/Makefile b/nptl/Makefile index 011f53eab2..a736ad7e7a 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -132,6 +132,7 @@ routines = \ pthread_spin_destroy \ pthread_spin_init \ pthread_spin_lock \ + pthread_spin_trylock \ pthread_spin_unlock \ tpp \ unwind \ @@ -198,7 +199,6 @@ libpthread-routines = \ pthread_setname \ pthread_setschedprio \ pthread_sigqueue \ - pthread_spin_trylock \ pthread_testcancel \ pthread_timedjoin \ pthread_tryjoin \ |