From 04bbb6fdfae0b5bc9e39a6f51894796df0cd35fb Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Fri, 24 Mar 2006 13:45:02 +0000 Subject: Now new linuxthreads builds w/ SHARED --- libpthread/linuxthreads/pthread.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'libpthread/linuxthreads/pthread.c') diff --git a/libpthread/linuxthreads/pthread.c b/libpthread/linuxthreads/pthread.c index 0874b325e..9eb89142d 100644 --- a/libpthread/linuxthreads/pthread.c +++ b/libpthread/linuxthreads/pthread.c @@ -449,7 +449,9 @@ __pthread_init_max_stacksize(void) } } -#ifdef SHARED +/* psm: we do not have any ld.so support yet + * remove the USE_TLS guard if nptl is added */ +#if defined SHARED && defined USE_TLS # if USE___THREAD /* When using __thread for this, we do it in libc so as not to give libpthread its own TLS segment just for this. */ @@ -587,7 +589,9 @@ static void pthread_initialize(void) /* How many processors. */ __pthread_smp_kernel = is_smp_system (); -#ifdef SHARED +/* psm: we do not have any ld.so support yet + * remove the USE_TLS guard if nptl is added */ +#if defined SHARED && defined USE_TLS /* Transfer the old value from the dynamic linker's internal location. */ *__libc_dl_error_tsd () = *(*GL(dl_error_catch_tsd)) (); GL(dl_error_catch_tsd) = &__libc_dl_error_tsd; -- cgit v1.2.3