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 C2CB03858D33 for ; Wed, 16 Aug 2023 16:34:11 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org C2CB03858D33 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 1qWJTH-0007KY-Dw; Wed, 16 Aug 2023 12:34:11 -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=FCSQNj9xvNRX4jY5TP161z+Brd7zYF51+MSl2fTZc7Q=; b=Epfb+IbLNcMu 88EAvTVdn86dVK2YQgq6+P3rwb/+z2B8GWPEXrn7YDIGabi9oGxCUS1cWCi6ihEBsNCn3AvsbbPc1 6V5zjgKw4DYxH90k8Q+kfCh1uVHHjNXp1+MBVMpmUNsu3yWEAY/eGpyBNK/VKVSwkJzeBbPzIyrpX xLXGdgvF8ZQPkOTRb0VyBLpngVuYgKn3ak9ijeWe7ZXZ6kuo3SXF4BrNb2yw14Wk9nwy4Ks2+AYHR lmODJ2/Vyf2UyHrfQR95PSNHeu5rhM9pfANZNJVKQR642bH/gbHdtRbjO+RVvqIYeQu9FbF7vJkIH j27lH5ZNfFNhQHYy3/l5qA==; Date: Wed, 16 Aug 2023 19:34:02 +0300 Message-Id: <83y1ib6j5x.fsf@gnu.org> From: Eli Zaretskii To: Andrew Burgess Cc: gdb-patches@sourceware.org In-Reply-To: <94e68e6c1400ede2e9e46fc8ef76bd82aa533e0e.1692200989.git.aburgess@redhat.com> (message from Andrew Burgess via Gdb-patches on Wed, 16 Aug 2023 16:55:03 +0100) Subject: Re: [PATCH 07/10] gdb: add qMachineId packet References: <94e68e6c1400ede2e9e46fc8ef76bd82aa533e0e.1692200989.git.aburgess@redhat.com> X-Spam-Status: No, score=-5.3 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,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: Andrew Burgess > Date: Wed, 16 Aug 2023 16:55:03 +0100 > From: Andrew Burgess via Gdb-patches > > diff --git a/gdb/NEWS b/gdb/NEWS > index 9839330c46d..d83f097d937 100644 > --- a/gdb/NEWS > +++ b/gdb/NEWS > @@ -272,6 +272,11 @@ qDefaultExecAndArgs > which the server was started. If no such information was given to > the server then this is reflected in the reply. > > +qMachineId > + This packet returns an identifier that allows GDB to determine if > + the remote server and GDB are running on the same host, and can see > + the same filesystem. > + > *** Changes in GDB 13 This part is OK. > @@ -44748,6 +44749,49 @@ > Indicates an error was encountered. > @end table > > +@anchor{Machine-Id Packet} > +@item qMachineId > +@cindex query remote machine-id, remote request > +@cindex @samp{qMachineId} packet Please move the @cindex entries before the @item line, so that index-search in an Info reader lands you on the line corresponding to @item, not on the text after that. > +within a single reply. See @ref{Machine-Id Details} for details of ^ Comma there, please (it is needed for some older versions of Texinfo). Btw, when a sentence starts with "See @ref", you could simplify by using @xref, as that is its main purpose. Thanks. Reviewed-By: Eli Zaretskii