diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-08-18 02:49:28 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-08-18 02:49:28 +0000 |
commit | 5f7339fd738083baf7e42268301babd4324c3e3e (patch) | |
tree | 092a1ceb6ff0b6e83808b53fed77a4cd64609ba1 /libpthread/linuxthreads/manager.c | |
parent | 1191db0686f450f1e9988fc04621489ba7e0a907 (diff) | |
download | uClibc-alpine-5f7339fd738083baf7e42268301babd4324c3e3e.tar.bz2 uClibc-alpine-5f7339fd738083baf7e42268301babd4324c3e3e.tar.xz |
Merge from trunk.
Diffstat (limited to 'libpthread/linuxthreads/manager.c')
-rw-r--r-- | libpthread/linuxthreads/manager.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libpthread/linuxthreads/manager.c b/libpthread/linuxthreads/manager.c index 42912edb7..bbdbd59a0 100644 --- a/libpthread/linuxthreads/manager.c +++ b/libpthread/linuxthreads/manager.c @@ -37,11 +37,6 @@ #include "semaphore.h" #include <not-cancel.h> -#define __clone clone -#if !(USE_TLS && HAVE___THREAD) && defined __UCLIBC_HAS_XLOCALE__ -#define __uselocale(x) uselocale(x) -#endif - /* For debugging purposes put the maximum number of threads in a variable. */ const int __linuxthreads_pthread_threads_max = PTHREAD_THREADS_MAX; @@ -297,9 +292,7 @@ pthread_start_thread(void *arg) #if !(USE_TLS && HAVE___THREAD) /* Initialize thread-locale current locale to point to the global one. With __thread support, the variable's initializer takes care of this. */ -#ifdef __UCLIBC_HAS_XLOCALE__ __uselocale (LC_GLOBAL_LOCALE); -#endif #else /* Initialize __resp. */ __resp = &self->p_res; |