summaryrefslogtreecommitdiff
path: root/libpthread/nptl/pthread_create.c
diff options
context:
space:
mode:
Diffstat (limited to 'libpthread/nptl/pthread_create.c')
-rw-r--r--libpthread/nptl/pthread_create.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/libpthread/nptl/pthread_create.c b/libpthread/nptl/pthread_create.c
index d39cb278c..b11265f7c 100644
--- a/libpthread/nptl/pthread_create.c
+++ b/libpthread/nptl/pthread_create.c
@@ -21,7 +21,6 @@
#include <stdlib.h>
#include <string.h>
#include "pthreadP.h"
-#include <hp-timing.h>
#include <ldsodefs.h>
#include <atomic.h>
#include <resolv.h>
@@ -225,12 +224,6 @@ start_thread (void *arg)
{
struct pthread *pd = (struct pthread *) arg;
-#if HP_TIMING_AVAIL
- /* Remember the time when the thread was started. */
- hp_timing_t now;
- HP_TIMING_NOW (now);
- THREAD_SETMEM (pd, cpuclock_offset, now);
-#endif
#if defined __UCLIBC_HAS_RESOLVER_SUPPORT__
/* Initialize resolver state pointer. */
__resp = &pd->res;