Browse Source

- silence warning about using an undefined token

Bernhard Reutner-Fischer 17 years ago
parent
commit
bc488462fd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libpthread/linuxthreads/descr.h

+ 1 - 1
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