From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id 8F36A3858C60 for ; Thu, 2 Feb 2023 14:19:16 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 8F36A3858C60 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gnu.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gnu.org Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pNaQm-0001Ah-0n; Thu, 02 Feb 2023 09:19:16 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=TEfvAroMqFzMofDz8iiU5uoEabfBZeWPh3vNCQhkmEA=; b=CwGxKVGnQLmG oPa6E6ma6CJqsaxZo7WP1R4MFDu1WspcMmxiy1979LwdTY9bAsTLt+bgPRpDnIa+cZKuvsFo0nuuh 62ZOXsSxaOshcxXnRhuHluOwsBfkNFnfO2GI+i8muiNfd6L1Wa5TMoNmMpOY/Jk9oPKQxVHjTjvly sr+UIDLGyYDyRpLJ4RLNzLpjhaQwfAaQduAXxUiZR87jhMPFT83cdR+OYOFwlKJ2/lY5h0m4BhNdb vxcpMLeKqK8xU/t/DkrgGbgywFFfR0BpXZZ5EYewDg5Ybe1g6sgViOaEfavT4Xf6a/ueVOTTto9Ww keSjdta2JsiG5IWLyYabFQ==; Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pNaQl-0000s0-6d; Thu, 02 Feb 2023 09:19:15 -0500 Date: Thu, 02 Feb 2023 16:19:17 +0200 Message-Id: <837cx0xi8q.fsf@gnu.org> From: Eli Zaretskii To: Andrew Burgess Cc: gdb-patches@sourceware.org In-Reply-To: (message from Andrew Burgess via Gdb-patches on Thu, 2 Feb 2023 11:52:25 +0000) Subject: Re: [PATCH] gdb/doc: extend the documentation for the 'handle' command References: X-Spam-Status: No, score=1.9 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_BARRACUDACENTRAL,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=no autolearn_force=no version=3.4.6 X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: > Cc: Andrew Burgess > Date: Thu, 2 Feb 2023 11:52:25 +0000 > From: Andrew Burgess via Gdb-patches > > The documentation for the 'handle' command does not cover all of the > features of the command, and in one case, is just wrong. > > The user can specify 'all' as signal name, the documentation implies > that this will change the behaviour of all signals, in reality, this > changes all signals except SIGINT and SIGTRAP (the signals used by > GDB). I've updated the docs to list this limitation. > > The 'handle' command also allows the user to specify multiple signals > for a single command, e.g. 'handle SIGFPE SIGILL nostop pass print', > however the documentation doesn't describe this, so I've updated the > docs to describe this feature. > --- > gdb/doc/gdb.texinfo | 15 ++++++++------- > 1 file changed, 8 insertions(+), 7 deletions(-) Thanks, this is okay.