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 BD43C3858D35 for ; Wed, 18 Jan 2023 17:20:23 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org BD43C3858D35 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 1pIC6p-0007si-99; Wed, 18 Jan 2023 12:20:23 -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=hNS6fz6tXXpQzyADAqSaNgdDKwf15wlH8BfiZ0Tan6E=; b=eOkaHoC4Q9Vj gGVQXEKDPPOSQA5ZGLIkylPxOAQI669j3eGyhhpIabq8wv7s4cglEhAcQDxWt/6iS0rCpI43R4bw/ efaJKRTg3dvc/lMqa7XSG5unx9KwsiEpacMpT5N/RsBWXGkenITYlHYBj/0vaLZV1nA+mNmFu99xa AMvBsU1B+NpmJMuoZx8XRm/0+2ot0xKIZA49GpQGtXVQEMBvWP+c/RX2887pBfV9gW8AdqVNUzFTe fVH14Ocvk5pk8X8XgUJi0SvZbifTV/mJLrXFqF2GWSMVm0DHeeXFRttCLPvD+vROYNki7lsi6b4D0 rzHWUbAQ0LI4Q/5adaIysA==; 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 1pIC6S-0005BU-0N; Wed, 18 Jan 2023 12:20:02 -0500 Date: Wed, 18 Jan 2023 19:20:15 +0200 Message-Id: <83edrr220g.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 Wed, 18 Jan 2023 16:17:57 +0000) Subject: Re: [PATCHv2 01/13] gdb/doc: extended documentation for inferior function calls 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: Wed, 18 Jan 2023 16:17:57 +0000 > From: Andrew Burgess via Gdb-patches > > I noticed that the documentation for inferior function calls doesn't > say much about what happens if/when an inferior function call is > interrupted, i.e. it doesn't describe what the dummy frame looks like > on the stack, or how GDB behaves when the inferior is continued and > reaches the dummy frame. > > This commit aims to add some of this missing information. Thanks. > +If a called function is interrupted for any reason, and the stack is > +not unwound (due to @code{set unwind-on-terminating-exception on} or > +@code{set unwindonsignal on}), Please add here a cross-reference to here these settings are described in the manual. Otherwise, this is OK.