From 38987ff79a24c8c74e87fd1e6ebd18290aaba4d5 Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Sun, 24 Jul 2005 14:06:42 +0000 Subject: [PATCH] SIGSTOP being in _NSIG nowadays caused test8 to break - fixed. --- test/test8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.44.0