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 7D9BF385482D for ; Wed, 18 Jan 2023 17:33:19 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 7D9BF385482D 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 1pICJJ-0001RY-OV; Wed, 18 Jan 2023 12:33:17 -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=MSaWgaXz9zM2SaKvyycZg/w3Z8fe9uYT1xfdy9LChls=; b=Qq3a9g1YBhc0 HyX/5m8x7KfDzF3n2Xu0PW2qezv1rZmRdL48QMySk6JE95p8by4+pNVrM0HXvO5QyXSzf82YaVyFo eujIGKXDODqhp/thb3CAim3XSX/5AVCX7Xnzc4uD4aJd5DbdwtPIWsO9PZJC1/VxTnwX2jnHYyw9d tGIjljuJCfw/mpf3ECXaoJI5d8rUeR+rrj97F74K/3yXnHzMuIZCC6JoPbiK5QVy3BqCIQmXuNmg9 CPkwOYIWe6+BGt5cgurRneuWpyaXTvUE6WTalEUC2M0zu+vEbJtdJJFQ3FMlqruAhffZ7FDgFXKBm nAHGj34sNf9JF+oK7N3/1Q==; 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> From: Eli Zaretskii 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-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: 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.