diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-01-19 17:58:23 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-01-19 17:58:23 +0000 |
commit | 84feb65f67f9dfdd4c1946c042d07d10c65d4feb (patch) | |
tree | 74d99dd3e4d3b0bef09fc5651ccd2e0809ae452b /usr.bin/yacc | |
parent | 14ed877776dcefece53d3ac792a4ed18ba7dd630 (diff) |
mark remaining signal races which are difficult to fix, and fix a few partially
Diffstat (limited to 'usr.bin/yacc')
-rw-r--r-- | usr.bin/yacc/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/yacc/main.c b/usr.bin/yacc/main.c index 82e8840ba4b..7e80b1ef054 100644 --- a/usr.bin/yacc/main.c +++ b/usr.bin/yacc/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.10 1999/08/04 18:31:26 millert Exp $ */ +/* $OpenBSD: main.c,v 1.11 2001/01/19 17:58:22 deraadt Exp $ */ /* $NetBSD: main.c,v 1.5 1996/03/19 03:21:38 jtc Exp $ */ /* @@ -47,7 +47,7 @@ char copyright[] = #if 0 static char sccsid[] = "@(#)main.c 5.5 (Berkeley) 5/24/93"; #else -static char rcsid[] = "$OpenBSD: main.c,v 1.10 1999/08/04 18:31:26 millert Exp $"; +static char rcsid[] = "$OpenBSD: main.c,v 1.11 2001/01/19 17:58:22 deraadt Exp $"; #endif #endif /* not lint */ @@ -129,7 +129,7 @@ void onintr(signo) int signo; { - done(1); + done(1); /* XXX signal race */ } |