summaryrefslogtreecommitdiff
path: root/libpthread
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-02-05 12:17:12 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-02-05 12:17:12 +0000
commitbc488462fd2a9293ec9e27824fd58e1c14caaa4e (patch)
tree96b2cfc285fa60014e3f5a4e09bc0223bbdd6907 /libpthread
parent1ca1f363d7c228668051aad2e30a4d02c9fcdd0a (diff)
- silence warning about using an undefined token
Diffstat (limited to 'libpthread')
-rw-r--r--libpthread/linuxthreads/descr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/linuxthreads/descr.h b/libpthread/linuxthreads/descr.h
index f99638396..0f50d4deb 100644
--- a/libpthread/linuxthreads/descr.h
+++ b/libpthread/linuxthreads/descr.h
@@ -130,7 +130,7 @@ struct _pthread_descr_struct
void *__padding[16];
} p_header;
# define p_multiple_threads p_header.data.multiple_threads
-#elif TLS_MULTIPLE_THREADS_IN_TCB
+#elif defined TLS_MULTIPLE_THREADS_IN_TCB && TLS_MULTIPLE_THREADS_IN_TCB
int p_multiple_threads;
#endif