From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id QMrrHXgtyGMRnhkAWB0awg (envelope-from ) for ; Wed, 18 Jan 2023 12:33:44 -0500 Received: by simark.ca (Postfix, from userid 112) id 788D11E128; Wed, 18 Jan 2023 12:33:44 -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=sG6xmUyj; 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 304611E0D3 for ; Wed, 18 Jan 2023 12:33:44 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id C10B23854830 for ; Wed, 18 Jan 2023 17:33:43 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C10B23854830 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1674063223; bh=MSaWgaXz9zM2SaKvyycZg/w3Z8fe9uYT1xfdy9LChls=; 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=sG6xmUyjLx7t/cZ3tNxl4v472yOyAt6+yKtuXA8u8ejOu4mUDejV8U77B3LsQJsxv v5SUAtB+CXKxHCYL0CH29EGq+fKqhMp/z3VNAI9xtfkxB6GCJNOXr/Va9kvQbQfco+ whffAe2EKy9EdqLwIaSR1umnZ9WTUpAO6EX2hRpk= Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id 7D9BF385482D for ; Wed, 18 Jan 2023 17:33:19 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 7D9BF385482D 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 1pICJJ-0001RY-OV; Wed, 18 Jan 2023 12:33:17 -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 1pICJJ-0000aQ-7X; Wed, 18 Jan 2023 12:33:17 -0500 Date: Wed, 18 Jan 2023 19:33:32 +0200 Message-Id: <83a62f21eb.fsf@gnu.org> To: Andrew Burgess Cc: gdb-patches@sourceware.org In-Reply-To: <0a8172f909c477fc7bab48c99df5860c887b8024.1674058360.git.aburgess@redhat.com> (message from Andrew Burgess via Gdb-patches on Wed, 18 Jan 2023 16:18:08 +0000) Subject: Re: [PATCHv2 12/13] gdb: introduce unwind-on-timeout setting References: <0a8172f909c477fc7bab48c99df5860c887b8024.1674058360.git.aburgess@redhat.com> 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: Wed, 18 Jan 2023 16:18:08 +0000 > From: Andrew Burgess via Gdb-patches > > +set unwind-on-timeout on|off > +show unwind-on-timeout > + These commands control whether GDB should unwind the stack when a > + timeout occurs during an inferior function call. The default is > + off, in which case the inferior will remain in the frame where the > + timeout occurred. When on GDB will unwind the stack remocing the ^ ^^^^^^^^ A comma is missing there. Also, a typo: "remocing". The documentation parts are OK with those nits fixed. Thanks.