From: Philip Homburg Date: Mon, 30 Jan 2006 16:27:49 +0000 (+0000) Subject: Added SIGCONT to the list of signal that are to be ignored by default. X-Git-Tag: v3.1.2a~398 X-Git-Url: http://zhaoyanbai.com/repos/doxygen-warnings.log?a=commitdiff_plain;h=8aa8552e95cd3515b4816b3f583b3b57881e5b03;p=minix.git Added SIGCONT to the list of signal that are to be ignored by default. --- 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;