From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 8E3F21A0B07 for ; Sat, 2 Nov 2024 23:17:20 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1730589440; cv=none; b=i8A99AJ/l8Ht/VWvqyifcKqN+KqYLBbKq9CQlwq9Ebs+wKhMzH/5ynQWGA4K/aWmg1bktQNjMAof6eGzPOeZ/2/9P9b6bYbK7iffXdxEw2y3x7SP8anLDaWxhG0Yu4JismK+3pXHWNAiEww9xMChqfT14M67P7UWFC1u6SYe5oc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1730589440; c=relaxed/simple; bh=hTyfzq3h++vfnaQa4XStlfUnRyrWWP6chCjj3vJ0jqE=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=TZN2BTKEAeNzvSsjvRKZaA1EAyvxLW0kFUqs4vnuJSJcQb5Q9Uo/CBqXr4tS02gSTCB7T4OL8KMfk0AEPmRLWQiZ4EX1Mz2hgifMRtpm5Mb+CUXk9073cJyEM8gVYamV3edOKQrCFsILlQl/3PWr9DiOViwku0MCwJ77tb4tAus= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=sZ6C7VSD; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="sZ6C7VSD" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0D1EBC4CEC3; Sat, 2 Nov 2024 23:17:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1730589440; bh=hTyfzq3h++vfnaQa4XStlfUnRyrWWP6chCjj3vJ0jqE=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=sZ6C7VSDCGB7yRhB3svKYfdrFT5VznWNeDzCIaUQE7PpHz8OoZrqGW0wfeMoaNzf/ 1WklcA22mOuAcaa+U0Q5rx6gLBcRsjvGZ9qJvXhvzjky7DZxy1nKsDjIleB91qSNXh emyjc68qyFt6EzHWz/nITlSb+hprnFsu4ylClBmN1uiH8K/Z/lDbxnBr8WBGJhM2E7 ITcaD5SeX9ibNo3A8ECBLekii8vtZ4R9gCecpXRYhm6X67l+5p/kLo0BQW25s2BEVS I1uIb8qo5Ezkghai8qnXH3wNb5bGb+DNHf+aQqw2e1ICbfECc4NuokodRL/2A7Tk0B 3W0IBCU2i0A1g== Date: Sun, 3 Nov 2024 00:17:13 +0100 From: Alejandro Colomar To: linux-man@vger.kernel.org, branden@debian.org, cjwatson@debian.org Cc: groff@gnu.org, Vincent Lefevre Subject: Re: [PATCH 1/3] signal.7: Better description for SIGFPE Message-ID: <20241102231310.xy5yjoaszto3gwtw@devuan> References: Precedence: bulk X-Mailing-List: linux-man@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="mc2wzekfa7l3qxky" Content-Disposition: inline In-Reply-To: --mc2wzekfa7l3qxky Content-Type: multipart/signed; protected-headers=v1; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="5pzikd4denappodn" Content-Disposition: inline Subject: Re: [PATCH 1/3] signal.7: Better description for SIGFPE MIME-Version: 1.0 --5pzikd4denappodn Content-Type: text/plain; protected-headers=v1; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Subject: Re: [PATCH 1/3] signal.7: Better description for SIGFPE MIME-Version: 1.0 Oops, this was sent by accident. On Sun, Nov 03, 2024 at 12:10:27AM +0100, Alejandro Colomar wrote: > From: Vincent Lefevre >=20 > SIGFPE has comment "Floating-point exception", which corresponds to > the FPE acronym. But this is misleading as this signal may also be > generated by an integer division by 0. >=20 > Change it to "Erroneous arithmetic operation" from POSIX. > Note: the GNU C Library manual says "fatal arithmetic error". >=20 > Link: > Link: > Signed-off-by: Vincent Lefevre > Signed-off-by: Alejandro Colomar > --- > man/man7/signal.7 | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/man/man7/signal.7 b/man/man7/signal.7 > index 7a9e91cc7..d19f171b3 100644 > --- a/man/man7/signal.7 > +++ b/man/man7/signal.7 > @@ -373,7 +373,7 @@ .SS Standard signals > SIGCLD \- Ign A synonym for \fBSIGCHLD\fP > SIGCONT P1990 Cont Continue if stopped > SIGEMT \- Term Emulator trap > -SIGFPE P1990 Core Floating-point exception > +SIGFPE P1990 Core Erroneous arithmetic operation > SIGHUP P1990 Term Hangup detected on controlling terminal > or death of controlling process > SIGILL P1990 Core Illegal Instruction > --=20 > 2.39.5 >=20 --=20 --5pzikd4denappodn-- --mc2wzekfa7l3qxky Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEE6jqH8KTroDDkXfJAnowa+77/2zIFAmcmsvkACgkQnowa+77/ 2zJe7xAAlGbbrE/e9rnTrvjroGNZ9x6YosSE4WalIHH1ZrgzepziG9c5Mkj9t3Gq scajvvsKyDXaeU1SSCV3GI5yZR8dOzkVfk8JkbEUwMhu0NJiZ2t6xRLIXIzMf/PL k/2rPwBhBGVGFxsZhBgOhgMOR1n0A17Dy6srBu91fzwE7pj1Fx7Onk4lfHmIZopf R4TFxdkrM0BV6u/7882+g2zWxCY4vKtC4D4sY6OWTYKSQ7F9QgpXCmsRYLpNA07K jm0QsViPuHbdGrqcse/QBxC208WSHy1tdNNor4QP4xGYUK64rCkfPChsg+tTd5WB aFP+GnPXx906A/DM5RdHEKN+N9BtLkUXjVPmL9p6JImnGsnW/gUKxg5ZTelZ8Qrc z5YHyfEzlIt851sD9KxbQ17JCiJSp+zJWNwzqS4tGQ/qt6mfBGlRTQmBtW+p86XA PZZRGJ8mh0usuAbFl2obmR1P7ljIQNQAfA9Fy2sVyn++BoAiMgbjBD0gZCoWTMWA hyStFxcAJ411Hf+bFVPytID7tdVAQzglzyuF27VFG6qcIxBeRq4lSjMlX+FYQMQN Ql4pA18PUagcgsyDNhUbfZp87NduIP891lwhaN46YwSnF9IzzyB21emgjxJk91mU 8vIoUIdDV5YMD/sQX1xd6QxDKQ8zNHqSCWjvQ9GKZM1I3dxJ2fo= =sP1X -----END PGP SIGNATURE----- --mc2wzekfa7l3qxky--