From: Ben Gras Date: Sun, 24 Jul 2005 14:06:42 +0000 (+0000) Subject: SIGSTOP being in _NSIG nowadays caused test8 to break - fixed. X-Git-Tag: v3.1.0~548 X-Git-Url: http://zhaoyanbai.com/repos/named-checkzone.html?a=commitdiff_plain;h=38987ff79a24c8c74e87fd1e6ebd18290aaba4d5;p=minix.git SIGSTOP being in _NSIG nowadays caused test8 to break - fixed. --- diff --git a/test/test8.c b/test/test8.c index bd65d21d8..824b63f4a 100644 --- a/test/test8.c +++ b/test/test8.c @@ -244,8 +244,8 @@ void test8b() if (sigdelset(&s_nokill, SIGKILL) != 0) e(8); #ifndef _MINIX /* XXX - should unsupported signals be <= _NSIG? */ if (SIGSTOP > _NSIG) e(666); -#endif /* _MINIX */ if (SIGSTOP <= _NSIG && sigdelset(&s_nokill, SIGSTOP) != 0) e(888); +#endif /* _MINIX */ /* Now get most of the signals into default state. Don't change SIGINT * or SIGQUIT, so this program can be killed. SIGKILL is also special.