From owner-cvs-lib Tue Mar 25 09:47:19 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA26648 for cvs-lib-outgoing; Tue, 25 Mar 1997 09:47:19 -0800 (PST) Received: from alpha.xerox.com (alpha.Xerox.COM [13.1.64.93]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id JAA26612; Tue, 25 Mar 1997 09:46:47 -0800 (PST) Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <15930(7)>; Tue, 25 Mar 1997 09:46:14 PST Received: from localhost by crevenia.parc.xerox.com with SMTP id <177486>; Tue, 25 Mar 1997 09:46:06 -0800 To: Mike Pritchard cc: CVS-committers@freefall.freebsd.org, cvs-all@freefall.freebsd.org, cvs-lib@freefall.freebsd.org, freebsd-gnats-submit@freebsd.org, fenner@parc.xerox.com Subject: Re: docs/3047 & cvs commit: src/lib/libc/sys sigaction.2 In-reply-to: Your message of "Mon, 24 Mar 97 19:41:41 PST." <199703250341.TAA08216@freefall.freebsd.org> Date: Tue, 25 Mar 1997 09:45:58 PST From: Bill Fenner Message-Id: <97Mar25.094606pst.177486@crevenia.parc.xerox.com> Sender: owner-cvs-lib@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > Change the description of how attempts to block SIGKILL and SIGSTOP > are handled. The system call will actually fail in this case - the > system doesn't silently ignore the request. Closes PR# 3047 Um, if this is what you took from my wording then I did an even poorer job than the man page did. All I meant was that the antecedent of "This" in the second sentence of NOTE The mask specified in act is not allowed to block SIGKILL or SIGSTOP. This is done silently by the system. is potentially unclear. The first time I read this man page I thought the antecedent was "block SIGKILL [and] SIGSTOP", e.g. "the system silently blocks SIGKILL [and] SIGSTOP". The real meaning (and an alternative reading of the same sentence) is "the system silently ignores attempts to block SIGKILL or SIGSTOP"; I just wanted to make that sentence less ambiguous. Attempting to block SIGKILL and SIGSTOP is not an error and is silently ignored by the system. Everything else that the system call is attempting to do succeeds. (At least, this is what POSIX says, and this is what 2.2 does). (While writing my test program to make absolutely sure, I noticed that the first line should probably read "The mask specified in the sa_mask field" or something similar, too...) Bill