diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-03-09 14:53:12 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-03-09 14:53:12 +0000 |
commit | 55628cb04c5daec6016f9621f31ee853ceed6986 (patch) | |
tree | 595b8ee992ed92fddfca466af66d928a1b49daea /libpthread/linuxthreads/manager.c | |
parent | d0a847fd8a6f89095b20c44fac4f28530481a567 (diff) |
Move __clone/__uselocale to uClibc_glue.h
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; |