diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-06-03 02:51:14 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-06-03 02:51:14 +0000 |
commit | 5b9e501c32829682998ec9b5bfdd9417b99d1ad3 (patch) | |
tree | 1d1671382a93930180b7ec2a9104bba4baf9a71b /libpthread/nptl/pthread_create.c | |
parent | 855c7fda61d9313052a0afdfe851a4b390da845c (diff) | |
download | uClibc-alpine-5b9e501c32829682998ec9b5bfdd9417b99d1ad3.tar.bz2 uClibc-alpine-5b9e501c32829682998ec9b5bfdd9417b99d1ad3.tar.xz |
Sync up with latest NPTL code from glibc and add minor
#ifdef __UCLIBC__ directives.
Diffstat (limited to 'libpthread/nptl/pthread_create.c')
-rw-r--r-- | libpthread/nptl/pthread_create.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libpthread/nptl/pthread_create.c b/libpthread/nptl/pthread_create.c index 3572fcf88..18f1c034c 100644 --- a/libpthread/nptl/pthread_create.c +++ b/libpthread/nptl/pthread_create.c @@ -22,11 +22,14 @@ #include <stdlib.h> #include <string.h> #include "pthreadP.h" +#include <hp-timing.h> #include <ldsodefs.h> #include <atomic.h> #include <libc-internal.h> #include <resolv.h> +#include <shlib-compat.h> + /* Local function to start thread and handle cleanup. */ static int start_thread (void *arg); |