From 8aa8552e95cd3515b4816b3f583b3b57881e5b03 Mon Sep 17 00:00:00 2001 From: Philip Homburg Date: Mon, 30 Jan 2006 16:27:49 +0000 Subject: [PATCH] Added SIGCONT to the list of signal that are to be ignored by default. --- servers/pm/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servers/pm/main.c b/servers/pm/main.c index 476607f4c..e7245f8e4 100644 --- a/servers/pm/main.c +++ b/servers/pm/main.c @@ -154,7 +154,7 @@ PRIVATE void pm_init() register struct boot_image *ip; static char core_sigs[] = { SIGQUIT, SIGILL, SIGTRAP, SIGABRT, SIGEMT, SIGFPE, SIGUSR1, SIGSEGV, SIGUSR2 }; - static char ign_sigs[] = { SIGCHLD, SIGWINCH }; + static char ign_sigs[] = { SIGCHLD, SIGWINCH, SIGCONT }; static char mess_sigs[] = { SIGTERM, SIGHUP, SIGABRT, SIGQUIT }; register struct mproc *rmp; register int i; -- 2.44.0