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 C136D158546 for ; Sat, 2 Nov 2024 23:10:32 +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=1730589032; cv=none; b=pfNbFoiw5Y0mYEw7bpqpqd28UUlOx5H7U6godNTZEVmpb8ytTN8hsHhsanv0bb+t20vdu7lrmzSLGPeTX/M0AYUBKecO8MRDYiY2gFfMuKRijHkRDTlGqz0IVgpUFA/+uYtQqElezlWaFrnmcYXs1y/K00Yu2vci0b3zIionXYc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1730589032; c=relaxed/simple; bh=hVNECT/P8FMK5QD7tKJeyNsPy4BuRGE3LH6RkEwpzyc=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=NFpimC9FAnrchyTh71dUggx9861Nf9sAl/HPtXqmFvTzeo/27SakH1CErfsUYnlUwwv9XPt8szf+O8QAVdaN4BAyiC8JyXBIWheOavGQTwiPSvB9QfTFlmq8lfh+TQKMuXYcxWuxIjSiZzhi7SlgyZNqGtRA7/VdsmFT7KDFUZg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Lwp+/qN6; 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="Lwp+/qN6" Received: by smtp.kernel.org (Postfix) with ESMTPSA id CBFC0C4CEC3; Sat, 2 Nov 2024 23:10:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1730589032; bh=hVNECT/P8FMK5QD7tKJeyNsPy4BuRGE3LH6RkEwpzyc=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Lwp+/qN6nsABqqfLXghNUFeDxt7fmT1jRJpMfijLEaynuFI+ZThqNW9Rrm/q/pNPV p3oSlhHHo81RS1xTObcihFlACN8UDqCZxfvbfAAYTdZHk3q4bLDuUar2ITsdf9ZwH7 dYK02+ubGdaeGzq+vLgcusl6OhrmyMt/DBd5/au/Xwi+RprOvChLZywp3lZgUE+gw/ Kezdl3IjJhjn2NbA5qk4iiq7GV8Viv9hGQdL8uEDqVuaWWHqime4SXhy4LQtEzwAP2 eSS0KccO6VwkuemGAzpQVfYNlRtgcP5rqM0hQOXVteXMFzonCDm6XBoBn+cGqgi34t zsdqljR0uQO5Q== Date: Sun, 3 Nov 2024 00:10:27 +0100 From: Alejandro Colomar To: linux-man@vger.kernel.org, branden@debian.org, cjwatson@debian.org Cc: groff@gnu.org, Vincent Lefevre , Alejandro Colomar Subject: [PATCH 1/3] signal.7: Better description for SIGFPE Message-ID: 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="1zpFRUK9a316Zw9T" Content-Disposition: inline In-Reply-To: X-Mailer: git-send-email 2.39.5 --1zpFRUK9a316Zw9T Content-Type: text/plain; protected-headers=v1; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Date: Sun, 3 Nov 2024 00:10:27 +0100 From: Alejandro Colomar To: linux-man@vger.kernel.org, branden@debian.org, cjwatson@debian.org Cc: groff@gnu.org, Vincent Lefevre , Alejandro Colomar Subject: [PATCH 1/3] signal.7: Better description for SIGFPE =46rom: Vincent Lefevre 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. Change it to "Erroneous arithmetic operation" from POSIX. Note: the GNU C Library manual says "fatal arithmetic error". Link: Link: Signed-off-by: Vincent Lefevre Signed-off-by: Alejandro Colomar --- man/man7/signal.7 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 --1zpFRUK9a316Zw9T Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEE6jqH8KTroDDkXfJAnowa+77/2zIFAmcmsWMACgkQnowa+77/ 2zKqHw/+MaAo1AwbFadNTwKnec7ZOyHYZoea1JclsNejWo3SW5CYX7ItwMj3+ZZM oWL/+d4sbQGn7GuZGbUSbzyweu0GUWUnSsNWRWz3PR2z+2WWfhCPN7bKQRRlDGk6 3p5EvGQAufQYA06ku8fnTQ1LlZDOmK7UEgQ61in9Xo+MY78/0di5ni/NEcfkHzhe wyGXvK4R+jsn1evTabeUgCABdZqebgr62j0QquuzqlGpIw3sW9pOwIc2CJ+g8hoB fFh9DJFbjNbLUDUHw0PqVryOaEQmmK20YRi/MsjlYKrXUVKDqKw3tqpLmvINbvmw fyhZi4wNjoE9bQfic05O0PKK6C5MzV3c8yV4VRxnpOiL+zBOdqRPdTfBsoh/lAod h3GaZZsA0k9IYyG+AvryI2Myj5hwfaPhecQhagaPLT6KIEZMI21Z6P3Q3efP1SJv JmNSrimw8qXs+fIULghBi1XqdsKbXwlrSdtia3NwC2iNXgqkDBeaoxHYmGuf1bdV DiMTlbwU30+mn5oKIdAMV2XQPiGzxcPPC9y5gee+YmEPFAgxAux1dyInF+WcfKxw 8U53QHCkObyvGFbdFaCY6tvVj8F1TA3EY36iUihdD1fPpldh03GZ1FPXZSDV4ibf p0qU/rGZgzDRVWcohSUm6L7x1M9MJQjHAXjjEHekPPrO2dgpQlw= =Y9Bt -----END PGP SIGNATURE----- --1zpFRUK9a316Zw9T--