diff options
Diffstat (limited to 'linuxthreads')
-rw-r--r-- | linuxthreads/ChangeLog | 5 | ||||
-rw-r--r-- | linuxthreads/pthread.c | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index 2804dea180..1bf05a21b9 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -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 diff --git a/linuxthreads/pthread.c b/linuxthreads/pthread.c index 628b0cea17..75cac05ac0 100644 --- a/linuxthreads/pthread.c +++ b/linuxthreads/pthread.c @@ -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) |