aboutsummaryrefslogtreecommitdiff
path: root/nptl/pthread_create.c
diff options
context:
space:
mode:
Diffstat (limited to 'nptl/pthread_create.c')
-rw-r--r--nptl/pthread_create.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/nptl/pthread_create.c b/nptl/pthread_create.c
index 014c41b7a4..34edee498f 100644
--- a/nptl/pthread_create.c
+++ b/nptl/pthread_create.c
@@ -102,9 +102,9 @@ __find_in_stack_list (pd)
/* Deallocate POSIX thread-local-storage. */
-static void
-internal_function
-deallocate_tsd (void)
+void
+attribute_hidden
+__nptl_deallocate_tsd (void)
{
struct pthread *self = THREAD_SELF;
@@ -268,7 +268,7 @@ start_thread (void *arg)
}
/* Run the destructor for the thread-local data. */
- deallocate_tsd ();
+ __nptl_deallocate_tsd ();
/* Clean up any state libc stored in thread-local variables. */
__libc_thread_freeres ();