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

2000-09-20  Andreas Jaeger  <aj@suse.de>

	* pthread.c [!__ASSUME_REALTIME_SIGNALS]: Make inclusion of
	"testrtsig.h" conditional.
This commit is contained in:
Andreas Jaeger 2000-09-20 12:20:59 +00:00
parent 6bf22cc723
commit b025588ad8
3 changed files with 9 additions and 2 deletions

View File

@ -34,7 +34,7 @@ before-compile = $(objpfx)msgs.h
install-others = $(inst_msgcatdir)/locale.alias install-others = $(inst_msgcatdir)/locale.alias
generated = msgs.h generated = msgs.h mtrace-tst-gettext tst-gettext.mtrace
generated-dirs := domaindir generated-dirs := domaindir
plural.c: plural.y plural.c: plural.y

View 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> 2000-09-11 Ulrich Drepper <drepper@redhat.com>
* sysdeps/pthread/pthread.h: Declare pthread_attr_getstack and * sysdeps/pthread/pthread.h: Declare pthread_attr_getstack and

View File

@ -248,7 +248,9 @@ int __pthread_sig_debug;
static int rtsigs_initialized; static int rtsigs_initialized;
#include "testrtsig.h" #if !__ASSUME_REALTIME_SIGNALS
# include "testrtsig.h"
#endif
static void static void
init_rtsigs (void) init_rtsigs (void)