From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16701 invoked by alias); 23 Dec 2013 01:40:29 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 16687 invoked by uid 89); 23 Dec 2013 01:40:28 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.1 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.3.2 X-HELO: rock.gnat.com Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Mon, 23 Dec 2013 01:40:27 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 10CDC1163CB; Sun, 22 Dec 2013 20:41:07 -0500 (EST) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id Y9z0vgs9LbTo; Sun, 22 Dec 2013 20:41:07 -0500 (EST) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id 98EBF1163CA; Sun, 22 Dec 2013 20:41:06 -0500 (EST) Received: by joel.gnat.com (Postfix, from userid 1000) id D78A4E04DA; Mon, 23 Dec 2013 05:40:15 +0400 (RET) Date: Mon, 23 Dec 2013 01:40:00 -0000 From: Joel Brobecker To: Eli Zaretskii Cc: gdb-patches@sourceware.org Subject: Re: [RFA/commit+doco] GDB/MI: Document support for -exec-run --start in -list-features Message-ID: <20131223014015.GE4605@adacore.com> References: <1386051670-28637-1-git-send-email-brobecker@adacore.com> <83wqjm4cwl.fsf@gnu.org> <20131210120252.GD3238@adacore.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="3siQDZowHQqNOShm" Content-Disposition: inline In-Reply-To: <20131210120252.GD3238@adacore.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-SW-Source: 2013-12/txt/msg00871.txt.bz2 --3siQDZowHQqNOShm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 366 Next step in the patch series is to add @findex'es for each item in the -list-features table. This one was purely mechanical... gdb/doc/ChangeLog: * gdb.texinfo (GDB/MI Support Commands): Add @findex entries for each @item in the table describing the list of features. Add empty line between each @item. OK to commit? Thank you, -- Joel --3siQDZowHQqNOShm Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0001-Add-findex-for-each-item-of-list-features.patch" Content-length: 2937 >From 48758b378554b9b148c86ff94c8d0f5a0bff054b Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Mon, 23 Dec 2013 05:33:59 +0400 Subject: [PATCH] Add @findex for each @item of -list-features This is to make it easier to discover the various options displayed by the -list-features command. It also adds an empty line between each @item of the table, for added clarity. Otherwise, it is becoming harder to visually separate each entry, and thus edit that part of the file. gdb/doc/ChangeLog: * gdb.texinfo (GDB/MI Support Commands): Add @findex entries for each @item in the table describing the list of features. Add empty line between each @item. --- gdb/doc/gdb.texinfo | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 29f1cfc..6b8241d 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -35115,39 +35115,62 @@ Example output: The current list of features is: @table @samp + @item frozen-varobjs +@findex frozen-varobjs Indicates support for the @code{-var-set-frozen} command, as well as possible presense of the @code{frozen} field in the output of @code{-varobj-create}. + @item pending-breakpoints +@findex pending-breakpoints Indicates support for the @option{-f} option to the @code{-break-insert} command. + @item python +@findex python Indicates Python scripting support, Python-based pretty-printing commands, and possible presence of the @samp{display_hint} field in the output of @code{-var-list-children} + @item thread-info +@findex thread-info Indicates support for the @code{-thread-info} command. + @item data-read-memory-bytes +@findex data-read-memory-bytes Indicates support for the @code{-data-read-memory-bytes} and the @code{-data-write-memory-bytes} commands. + @item breakpoint-notifications +@findex breakpoint-notifications Indicates that changes to breakpoints and breakpoints created via the CLI will be announced via async records. + @item ada-task-info +@findex ada-task-info Indicates support for the @code{-ada-task-info} command. + @item language-option +@findex language-option Indicates that all @sc{gdb/mi} commands accept the @option{--language} option (@pxref{Context management}). + @item info-gdb-mi-command +@findex info-gdb-mi-command Indicates support for the @code{-info-gdb-mi-command} command. + @item undefined-command-error-code +@findex undefined-command-error-code Indicates support for the "undefined-command" error code in error result records, produced when trying to execute an undefined @sc{gdb/mi} command (@pxref{GDB/MI Result Records}). + @item exec-run-start-option +@findex exec-run-start-option Indicates that the @code{-exec-run} command supports the @option{--start} option (@pxref{GDB/MI Program Execution}). + @end table @subheading The @code{-list-target-features} Command -- 1.8.3.2 --3siQDZowHQqNOShm--