]> Zhao Yanbai Git Server - minix.git/commitdiff
Added SIGCONT to the list of signal that are to be ignored by default.
authorPhilip Homburg <philip@cs.vu.nl>
Mon, 30 Jan 2006 16:27:49 +0000 (16:27 +0000)
committerPhilip Homburg <philip@cs.vu.nl>
Mon, 30 Jan 2006 16:27:49 +0000 (16:27 +0000)
servers/pm/main.c

index 476607f4c7d3140fb0da994ccdb0969f080741e0..e7245f8e42bd6e8fe9d7dbe4047867a82a14a002 100644 (file)
@@ -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;