summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2020-02-10 11:17:11 +0100
committerFlorian Weimer <fweimer@redhat.com>2020-02-10 23:19:33 +0100
commit5a84227d9e3373c424d70e39eafb446362ebcbb3 (patch)
tree0ac97507921a4f1c5f801e5132de13d3273d79e0
parent511c91b1144b7f32497ece3346463bb6b365f7d6 (diff)
downloadglibc-5a84227d9e3373c424d70e39eafb446362ebcbb3.tar.gz
nptl: Sort routines list in Makefile alphabetically
This will make it easier to review changes which move implementations from libpthread to libc.
-rw-r--r--nptl/Makefile28
1 files changed, 21 insertions, 7 deletions
diff --git a/nptl/Makefile b/nptl/Makefile
index 6f210d60e3..cb7b06b9ae 100644
--- a/nptl/Makefile
+++ b/nptl/Makefile
@@ -28,13 +28,27 @@ headers := pthread.h semaphore.h bits/semaphore.h \
extra-libs := libpthread
extra-libs-others := $(extra-libs)
-routines = alloca_cutoff forward libc-lowlevellock libc-cancellation \
- libc-cleanup libc_pthread_init libc_multiple_threads \
- register-atfork pthread_atfork pthread_self pthread_equal \
- pthread_attr_destroy pthread_attr_init pthread_attr_getdetachstate \
- pthread_attr_setdetachstate pthread_attr_getinheritsched \
- pthread_attr_setinheritsched pthread_attr_getschedparam \
- pthread_attr_setschedparam
+routines = \
+ alloca_cutoff \
+ forward \
+ libc-cancellation \
+ libc-cleanup \
+ libc-lowlevellock \
+ libc_multiple_threads \
+ libc_pthread_init \
+ pthread_atfork \
+ pthread_attr_destroy \
+ pthread_attr_getdetachstate \
+ pthread_attr_getinheritsched \
+ pthread_attr_getschedparam \
+ pthread_attr_init \
+ pthread_attr_setdetachstate \
+ pthread_attr_setinheritsched \
+ pthread_attr_setschedparam \
+ pthread_equal \
+ pthread_self \
+ register-atfork \
+
shared-only-routines = forward
static-only-routines = pthread_atfork