diff options
Diffstat (limited to 'libpthread')
| -rw-r--r-- | libpthread/linuxthreads.old/pthread.c | 6 | ||||
| -rw-r--r-- | libpthread/linuxthreads.old_db/td_thr_tls_get_addr.c | 2 | 
2 files changed, 4 insertions, 4 deletions
diff --git a/libpthread/linuxthreads.old/pthread.c b/libpthread/linuxthreads.old/pthread.c index c988131fc..ad392e34e 100644 --- a/libpthread/linuxthreads.old/pthread.c +++ b/libpthread/linuxthreads.old/pthread.c @@ -537,7 +537,7 @@ int __pthread_initialize_manager(void)    }    /* Start the thread manager */    pid = 0; -#ifdef USE_TLS +#if defined(USE_TLS) && USE_TLS    if (__linuxthreads_initial_report_events != 0)      THREAD_SETMEM (((pthread_descr) NULL), p_report_events,  		   __linuxthreads_initial_report_events); @@ -710,7 +710,7 @@ static pthread_descr thread_self_stack(void)      if (sp >= __pthread_manager_thread_bos && sp < __pthread_manager_thread_tos)  	return manager_thread;      h = __pthread_handles + 2; -# ifdef USE_TLS +# if defined(USE_TLS) && USE_TLS      while (h->h_descr == NULL  	    || ! (sp <= (char *) h->h_descr->p_stackaddr && sp >= h->h_bottom))  	h++; @@ -845,7 +845,7 @@ static void pthread_handle_sigcancel(int sig)      /* Main thread should accumulate times for thread manager and its         children, so that timings for main thread account for all threads. */      if (self == __pthread_main_thread) { -#ifdef USE_TLS +#if defined(USE_TLS) && USE_TLS        waitpid(__pthread_manager_thread->p_pid, NULL, __WCLONE);  #else        waitpid(__pthread_manager_thread.p_pid, NULL, __WCLONE); diff --git a/libpthread/linuxthreads.old_db/td_thr_tls_get_addr.c b/libpthread/linuxthreads.old_db/td_thr_tls_get_addr.c index 19821d6e7..8e38b6904 100644 --- a/libpthread/linuxthreads.old_db/td_thr_tls_get_addr.c +++ b/libpthread/linuxthreads.old_db/td_thr_tls_get_addr.c @@ -31,7 +31,7 @@ td_thr_tls_get_addr (const td_thrhandle_t *th __attribute__ ((unused)),  		     size_t offset __attribute__ ((unused)),  		     void **address __attribute__ ((unused)))  { -#ifdef USE_TLS +#if defined(USE_TLS) && USE_TLS    size_t modid;    union dtv pdtv, *dtvp;  | 
