aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2014-11-12 14:50:09 -0800
committerRoland McGrath <roland@hack.frob.com>2014-11-12 14:52:31 -0800
commitc6aab2cb524a9c54613f0a4f8310fc1ab48658a8 (patch)
treed71c37549eca9cc596632e3985942cbcbf582d1a
parent24f4f8253f177f8a1f5a6cd5f59be1cf766be284 (diff)
downloadglibc-c6aab2cb524a9c54613f0a4f8310fc1ab48658a8.tar
glibc-c6aab2cb524a9c54613f0a4f8310fc1ab48658a8.tar.gz
glibc-c6aab2cb524a9c54613f0a4f8310fc1ab48658a8.tar.bz2
glibc-c6aab2cb524a9c54613f0a4f8310fc1ab48658a8.zip
NPTL: Move __libc_multiple_threads_ptr defn to nptl-init.c
-rw-r--r--ChangeLog6
-rw-r--r--nptl/createthread.c6
-rw-r--r--nptl/nptl-init.c5
3 files changed, 11 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index d4c340630d..f6fe1fa4c3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2014-11-12 Roland McGrath <roland@hack.frob.com>
+
+ * nptl/createthread.c [!TLS_MULTIPLE_THREADS_IN_TCB]
+ (__libc_multiple_threads_ptr): Variable moved ...
+ * nptl/nptl-init.c [!TLS_MULTIPLE_THREADS_IN_TCB]: ... here.
+
2014-11-12 Joseph Myers <joseph@codesourcery.com>
* conform/GlibcConform.pm: New file.
diff --git a/nptl/createthread.c b/nptl/createthread.c
index 0980a7748b..49442d9f23 100644
--- a/nptl/createthread.c
+++ b/nptl/createthread.c
@@ -36,12 +36,6 @@
#endif
-#ifndef TLS_MULTIPLE_THREADS_IN_TCB
-/* Pointer to the corresponding variable in libc. */
-int *__libc_multiple_threads_ptr attribute_hidden;
-#endif
-
-
static int
do_clone (struct pthread *pd, const struct pthread_attr *attr,
int clone_flags, int (*fct) (void *), STACK_VARIABLES_PARMS,
diff --git a/nptl/nptl-init.c b/nptl/nptl-init.c
index b7d2197b3e..831d762a70 100644
--- a/nptl/nptl-init.c
+++ b/nptl/nptl-init.c
@@ -37,6 +37,11 @@
#include <kernel-features.h>
+#ifndef TLS_MULTIPLE_THREADS_IN_TCB
+/* Pointer to the corresponding variable in libc. */
+int *__libc_multiple_threads_ptr attribute_hidden;
+#endif
+
/* Size and alignment of static TLS block. */
size_t __static_tls_size;
size_t __static_tls_align_m1;