From owner-cvs-bin Mon Feb 23 17:45:27 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA12462 for cvs-bin-outgoing; Mon, 23 Feb 1998 17:45:27 -0800 (PST) (envelope-from owner-cvs-bin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA12421; Mon, 23 Feb 1998 17:45:16 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA01923; Mon, 23 Feb 1998 17:45:06 -0800 (PST) Date: Mon, 23 Feb 1998 17:45:06 -0800 (PST) Message-Id: <199802240145.RAA01923@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-bin@FreeBSD.ORG Subject: cvs commit: src/bin/dd misc.c Sender: owner-cvs-bin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 1998/02/23 17:45:05 PST Modified files: bin/dd misc.c Log: Exit with a nonzero status if we get killed by a SIGINT. POSIX.2 specifies exiting with a zero status if the file was copied successfully, and with a nonzero status if an error occurred. We are too sloppy to tell if the file was copied successfully when we get killed by a SIGINT, but it is unlikely to have been. Added a comment about related sloppiness (calling exit() from a signal handler). Revision Changes Path 1.12 +5 -4 src/bin/dd/misc.c From owner-cvs-bin Sat Feb 28 02:51:06 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA24124 for cvs-bin-outgoing; Sat, 28 Feb 1998 02:51:06 -0800 (PST) (envelope-from owner-cvs-bin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA24083; Sat, 28 Feb 1998 02:50:55 -0800 (PST) (envelope-from jraynard@FreeBSD.org) From: James Raynard Received: (from jraynard@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA04909; Sat, 28 Feb 1998 02:50:04 -0800 (PST) Date: Sat, 28 Feb 1998 02:50:04 -0800 (PST) Message-Id: <199802281050.CAA04909@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-bin@FreeBSD.ORG Subject: cvs commit: src/bin/csh csh.c exec.c func.c hist.c proc.c sem.c set.c Sender: owner-cvs-bin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jraynard 1998/02/28 02:50:04 PST Modified files: bin/csh csh.c exec.c func.c hist.c proc.c sem.c set.c Log: Don't assume sigset_t and int are equivalent. Revision Changes Path 1.13 +6 -6 src/bin/csh/csh.c 1.9 +2 -2 src/bin/csh/exec.c 1.10 +5 -5 src/bin/csh/func.c 1.6 +2 -2 src/bin/csh/hist.c 1.8 +10 -10 src/bin/csh/proc.c 1.7 +4 -4 src/bin/csh/sem.c 1.8 +2 -2 src/bin/csh/set.c