Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/games/worms Don't try to catch SIGSTOP...



details:   https://anonhg.NetBSD.org/src/rev/f271a033006c
branches:  trunk
changeset: 569883:f271a033006c
user:      christos <christos%NetBSD.org@localhost>
date:      Sun Sep 12 04:51:32 2004 +0000

description:
Don't try to catch SIGSTOP...

diffstat:

 games/worms/worms.c |  5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diffs (26 lines):

diff -r 0fc1d29bd60b -r f271a033006c games/worms/worms.c
--- a/games/worms/worms.c       Sat Sep 11 19:55:19 2004 +0000
+++ b/games/worms/worms.c       Sun Sep 12 04:51:32 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: worms.c,v 1.15 2004/03/29 20:30:03 hubertf Exp $       */
+/*     $NetBSD: worms.c,v 1.16 2004/09/12 04:51:32 christos Exp $      */
 
 /*
  * Copyright (c) 1980, 1993
@@ -39,7 +39,7 @@
 #if 0
 static char sccsid[] = "@(#)worms.c    8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: worms.c,v 1.15 2004/03/29 20:30:03 hubertf Exp $");
+__RCSID("$NetBSD: worms.c,v 1.16 2004/09/12 04:51:32 christos Exp $");
 #endif
 #endif /* not lint */
 
@@ -270,7 +270,6 @@
        (void)signal(SIGHUP, onsig);
        (void)signal(SIGINT, onsig);
        (void)signal(SIGQUIT, onsig);
-       (void)signal(SIGSTOP, onsig);
        (void)signal(SIGTSTP, onsig);
        (void)signal(SIGTERM, onsig);
 



Home | Main Index | Thread Index | Old Index