svn commit: trunk/uClibc/libpthread/linuxthreads.old/sysdeps/pthread/bits

aldot at uclibc.org aldot at uclibc.org
Tue May 20 08:46:38 UTC 2008


Author: aldot
Date: 2008-05-20 01:46:37 -0700 (Tue, 20 May 2008)
New Revision: 22020

Log:
- avoid warning due to undefined preprocessor token


Modified:
   trunk/uClibc/libpthread/linuxthreads.old/sysdeps/pthread/bits/libc-tsd.h


Changeset:
Modified: trunk/uClibc/libpthread/linuxthreads.old/sysdeps/pthread/bits/libc-tsd.h
===================================================================
--- trunk/uClibc/libpthread/linuxthreads.old/sysdeps/pthread/bits/libc-tsd.h	2008-05-20 08:27:26 UTC (rev 22019)
+++ trunk/uClibc/libpthread/linuxthreads.old/sysdeps/pthread/bits/libc-tsd.h	2008-05-20 08:46:37 UTC (rev 22020)
@@ -37,7 +37,7 @@
 
 #include <linuxthreads.old/internals.h>
 
-#if USE_TLS && HAVE___THREAD
+#if defined(USE_TLS) && USE_TLS && HAVE___THREAD
 
 /* When __thread works, the generic definition is what we want.  */
 # include <sysdeps/generic/bits/libc-tsd.h>




More information about the uClibc-cvs mailing list