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 DE7643858D38 for ; Mon, 11 Sep 2023 16:04:13 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org DE7643858D38 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 1qfjOX-0001jv-7f; Mon, 11 Sep 2023 12:04:13 -0400 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=QKEEdYtm1E7FacbCWxhCy+5YQGNZBS2XzCoYZkmfgS0=; b=ZBNp22lukj62 r3qkv3o+94seJs2HF7AVfveETDflZ+h1Qz+LekFP7DCyLbWY66f423QpmH4t4ffeG/c1+FDY/knhE JYJdV0EUr7zVpgarAo2d38P1+HOYqVu/y/V735gxpiZkgzzl/Rh87ObCXTkBS3Z31GuQGcBC/uEB7 A9q6lt3xFlcm+7Bkf8tofUf8+dF0feAa2pnXsoLfx7RSzVrW/6W2ulEYr2Q0698iq8UqXZyEUgSHJ 78cxDWxG4U1FbtGTRu5QoWqjQO6qifkFkkAhNfhkWaTfMh/GnHyxKcCG49/ReeUJzNWWbGiXkfPIa KQcMy8MSXIT8tc2Q5iCeJg==; Date: Mon, 11 Sep 2023 19:03:56 +0300 Message-Id: <834jk0r91v.fsf@gnu.org> From: Eli Zaretskii To: Tom Tromey Cc: gdb-patches@sourceware.org In-Reply-To: <20230911152250.3434008-1-tromey@adacore.com> (message from Tom Tromey via Gdb-patches on Mon, 11 Sep 2023 09:22:50 -0600) Subject: Re: [PATCH] Update Python signal-handling documentation References: <20230911152250.3434008-1-tromey@adacore.com> X-Spam-Status: No, score=0.6 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: > Cc: Tom Tromey > Date: Mon, 11 Sep 2023 09:22:50 -0600 > From: Tom Tromey via Gdb-patches > > I noticed a typo in the "Basic Python" node, and when fixing it > realized that the paragraph could use a link to the block_signals > function. This patch is the result. Thanks. > -@code{SIGCHLD} handler. > +@code{SIGCHLD} handler. When creating a new Python thread, you can > +use @code{gdb.block_signals} or @code{gdb.Thread} to handle this > +correctly; @xref{Threading in GDB}. ^^^^^ This should be @pxref or "see @ref"; @xref is only pertinent at the beginning of a sentence, since it produces a capitalized "See". OK with that nit fixed. Approved-By: Eli Zaretskii