* pthread.c [!__ASSUME_REALTIME_SIGNALS]: Make inclusion of "testrtsi...
authorAndreas Jaeger <aj@suse.de>
Wed, 20 Sep 2000 12:20:59 +0000 (12:20 +0000)
committerAndreas Jaeger <aj@suse.de>
Wed, 20 Sep 2000 12:20:59 +0000 (12:20 +0000)
2000-09-20  Andreas Jaeger  <aj@suse.de>

* pthread.c [!__ASSUME_REALTIME_SIGNALS]: Make inclusion of
"testrtsig.h" conditional.

intl/Makefile
linuxthreads/ChangeLog
linuxthreads/pthread.c

index 08bf5c9..57e2bc3 100644 (file)
@@ -34,7 +34,7 @@ before-compile = $(objpfx)msgs.h
 
 install-others = $(inst_msgcatdir)/locale.alias
 
-generated = msgs.h
+generated = msgs.h mtrace-tst-gettext tst-gettext.mtrace
 generated-dirs := domaindir
 
 plural.c: plural.y
index 2804dea..1bf05a2 100644 (file)
@@ -1,3 +1,8 @@
+2000-09-20  Andreas Jaeger  <aj@suse.de>
+
+       * pthread.c [!__ASSUME_REALTIME_SIGNALS]: Make inclusion of
+       "testrtsig.h" conditional.
+
 2000-09-11  Ulrich Drepper  <drepper@redhat.com>
 
        * sysdeps/pthread/pthread.h: Declare pthread_attr_getstack and
index 628b0ce..75cac05 100644 (file)
@@ -248,7 +248,9 @@ int __pthread_sig_debug;
 
 static int rtsigs_initialized;
 
-#include "testrtsig.h"
+#if !__ASSUME_REALTIME_SIGNALS
+# include "testrtsig.h"
+#endif
 
 static void
 init_rtsigs (void)