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 E54313858D28 for ; Tue, 31 Jan 2023 18:13:03 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org E54313858D28 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 1pMv7s-0002zh-Cc; Tue, 31 Jan 2023 13:13:01 -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=QvW27gcWlXpeLF56KO7lO2wOCjXdFynwg9YYGfoK/Mw=; b=ViYxKiDQmfVW V+4JjFnK4nMbSurUHB2VECcH59wtJpWMGFQdAg0ignl/y6pflG1056C6bMIW0CsthF/Ktt0ZmeiYl LWadxvnwG28PdGFBlwItFkPRkOd9N2VLTqrPZCwpdHemHqUw+jBPClVy7RciJymZCf/NXu+h9RB8e F+q2d6vqJj1bp6m9873ry4kfcROlPHX3xn8XW3Qt9WW7t8IRsdYPnGfCe1964JnJsuvjIRbQxjRuC 4SxCJJzd8+DWwyOxjwf45t7mF3po5WQJbAV+IQ0GAUy8FXmD+fD7eAzaZp/t4ddHrLtB1UnWGKU18 7YnxempzCkq2Kudq24QXsg==; 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> From: Eli Zaretskii 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-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: 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.