From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id EFm0LURa2WOVbyYAWB0awg (envelope-from ) for ; Tue, 31 Jan 2023 13:13:24 -0500 Received: by simark.ca (Postfix, from userid 112) id B90961E128; Tue, 31 Jan 2023 13:13:24 -0500 (EST) Authentication-Results: simark.ca; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.a=rsa-sha256 header.s=default header.b=cj/d8dkL; dkim-atps=neutral X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-8.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI, URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 71A421E112 for ; Tue, 31 Jan 2023 13:13:24 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 9DE2E3858C62 for ; Tue, 31 Jan 2023 18:13:22 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9DE2E3858C62 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1675188802; bh=QvW27gcWlXpeLF56KO7lO2wOCjXdFynwg9YYGfoK/Mw=; h=Date:To:Cc:In-Reply-To:Subject:References:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From:Reply-To:From; b=cj/d8dkLvxAcPtdiJmOlRejYQTLks1HmmRox48q0UBeZE16O+WFIiN9sSCQllrJP6 vNzqesEKMAS4DzjrAyvvv+BCIRCAuU+zajSrYrMNWT7RMPJRUOiacDqtgazSW2mvP7 RtPupIdLsukTPXi2YLvGefYc8gPHfsrsraLu+bEQ= Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id E54313858D28 for ; Tue, 31 Jan 2023 18:13:03 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org E54313858D28 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 1pMv7s-0002zh-Cc; Tue, 31 Jan 2023 13:13:01 -0500 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 1pMv7q-00040W-LN; Tue, 31 Jan 2023 13:12:59 -0500 Date: Tue, 31 Jan 2023 20:12:56 +0200 Message-Id: <83pmau1sk7.fsf@gnu.org> To: Andrew Burgess Cc: gdb-patches@sourceware.org In-Reply-To: (message from Andrew Burgess via Gdb-patches on Tue, 31 Jan 2023 17:27:18 +0000) Subject: Re: [PATCHv3 13/13] gdb: rename unwindonsignal to unwind-on-signal References: X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Eli Zaretskii via Gdb-patches Reply-To: Eli Zaretskii Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" > Cc: Andrew Burgess > Date: Tue, 31 Jan 2023 17:27:18 +0000 > From: Andrew Burgess via Gdb-patches > > We now have unwind-on-timeout and unwind-on-terminating-exception, and > then the odd one out unwindonsignal. > > I'm not a great fan of these squashed together command names, so in > this commit I propose renaming this to unwind-on-signal. > > Obviously I've added the hidden alias unwindonsignal so any existing > GDB scripts will keep working. > > There's one test that I've extended to test the alias works, but in > most of the other test scripts I've changed over to use the new name. > > The docs are updated to reference the new name. > --- > gdb/NEWS | 11 ++++++ > gdb/doc/gdb.texinfo | 16 ++++++--- > gdb/infcall.c | 21 ++++++----- > gdb/testsuite/gdb.base/callfuncs.exp | 4 +-- > gdb/testsuite/gdb.base/infcall-failure.exp | 4 +-- > gdb/testsuite/gdb.base/unwindonsignal.exp | 36 +++++++++++++------ > gdb/testsuite/gdb.compile/compile-cplus.exp | 2 +- > gdb/testsuite/gdb.compile/compile.exp | 2 +- > gdb/testsuite/gdb.cp/gdb2495.exp | 16 ++++----- > gdb/testsuite/gdb.fortran/function-calls.exp | 2 +- > gdb/testsuite/gdb.mi/mi-syn-frame.exp | 2 +- > .../infcall-from-bp-cond-simple.exp | 2 +- > .../gdb.threads/thread-unwindonsignal.exp | 8 ++--- > 13 files changed, 83 insertions(+), 43 deletions(-) Since this is just a mechanical renaming, it is obviously okay in the documentation parts. Thanks.