summaryrefslogtreecommitdiff
path: root/libpthread/nptl/pthread_create.c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2017-07-05 22:49:41 +0200
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2017-07-05 22:49:41 +0200
commit482d023e516bc88a10d8ab31f389f2b47b1a71d1 (patch)
tree58debda064ace5716fe1f23abd9b1d29b4f4bf7b /libpthread/nptl/pthread_create.c
parentdc7ad97385c940c0a0d67b924c1b78159da5549d (diff)
Remove CALL_THREAD_FCT macro
Following glibc commit a358c805300e358e30d4788a6f19c69988623a5c
Diffstat (limited to 'libpthread/nptl/pthread_create.c')
-rw-r--r--libpthread/nptl/pthread_create.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libpthread/nptl/pthread_create.c b/libpthread/nptl/pthread_create.c
index b11265f7c..3064b40dd 100644
--- a/libpthread/nptl/pthread_create.c
+++ b/libpthread/nptl/pthread_create.c
@@ -282,11 +282,7 @@ start_thread (void *arg)
}
/* Run the code the user provided. */
-#ifdef CALL_THREAD_FCT
- THREAD_SETMEM (pd, result, CALL_THREAD_FCT (pd));
-#else
THREAD_SETMEM (pd, result, pd->start_routine (pd->arg));
-#endif
}
/* Run the destructor for the thread-local data. */