summaryrefslogtreecommitdiff
path: root/pthread/pt-create.c
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@schwinge.name>2011-10-20 18:49:46 +0200
committerThomas Schwinge <thomas@schwinge.name>2011-10-20 18:49:46 +0200
commita7646fcfb0b2a152182133594beb8ffa99cb8fef (patch)
tree4502c57b8b45651215266214ac3f3f990741a003 /pthread/pt-create.c
parent73d5f53b31a5b61981e91e5b92916253854bac3d (diff)
parent081c7aeb4d4de82ab615db565c60dd776a385c34 (diff)
Merge commit 'refs/top-bases/t/stand-alone' into t/stand-alone
Conflicts: Makefile * Makefile [OS_GNU] (libpthread_la_CPPFLAGS): Define ENABLE_TLS.
Diffstat (limited to 'pthread/pt-create.c')
-rw-r--r--pthread/pt-create.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/pthread/pt-create.c b/pthread/pt-create.c
index 8f62b78..346c697 100644
--- a/pthread/pt-create.c
+++ b/pthread/pt-create.c
@@ -129,6 +129,13 @@ __pthread_create_internal (struct __pthread **thread,
if (err)
goto failed_thread_alloc;
+#ifdef ENABLE_TLS
+ pthread->tcb = _dl_allocate_tls (NULL);
+ if (!pthread->tcb)
+ goto failed_thread_tls_alloc;
+ pthread->tcb->tcb = pthread->tcb;
+#endif /* ENABLE_TLS */
+
/* And initialize the rest of the machine context. This may include
additional machine- and system-specific initializations that
prove convenient. */
@@ -194,6 +201,10 @@ __pthread_create_internal (struct __pthread **thread,
failed_sigstate:
__pthread_sigstate_destroy (pthread);
failed_setup:
+#ifdef ENABLE_TLS
+ _dl_deallocate_tls (pthread->tcb, 1);
+ failed_thread_tls_alloc:
+#endif /* ENABLE_TLS */
__pthread_thread_dealloc (pthread);
__pthread_thread_halt (pthread);
failed_thread_alloc: