From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19092 invoked by alias); 12 Nov 2013 09:54:30 -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 19021 invoked by uid 89); 12 Nov 2013 09:54:29 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.7 required=5.0 tests=AWL,BAYES_00,RDNS_NONE,URIBL_BLOCKED autolearn=no version=3.3.2 X-HELO: rock.gnat.com Received: from Unknown (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Tue, 12 Nov 2013 09:54:28 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 1E713116318; Tue, 12 Nov 2013 04:54:52 -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 vmMmEjotXHbS; Tue, 12 Nov 2013 04:54:52 -0500 (EST) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id 20AFD1162EA; Tue, 12 Nov 2013 04:54:51 -0500 (EST) Received: by joel.gnat.com (Postfix, from userid 1000) id 1A76CE1560; Tue, 12 Nov 2013 13:54:16 +0400 (RET) Date: Tue, 12 Nov 2013 11:25:00 -0000 From: Joel Brobecker To: Eli Zaretskii Cc: gdb-patches@sourceware.org Subject: Re: [RFC] Add ada-exception-catchpoints to -list-features command output. Message-ID: <20131112095416.GD3481@adacore.com> References: <1384076960-12339-1-git-send-email-brobecker@adacore.com> <831u2o41on.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="8GpibOaaTibBMecb" Content-Disposition: inline In-Reply-To: <831u2o41on.fsf@gnu.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-SW-Source: 2013-11/txt/msg00311.txt.bz2 --8GpibOaaTibBMecb Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 782 Hi Eli, > Thanks, the documentation part is OK. Thanks for the review. As discussed with Tom, I've decided to merge the two entries into one. Attached is a patch that does that, together with a revised manual update. Can you tell me what you think? In particular, I am wondering whether the "all related to Ada exceptions" really brings anything in this context other than noise. gdb/ChangeLog: * mi/mi-main.c (mi_cmd_list_features): Replace "info-ada-exceptions" entry with "ada-exceptions". gdb/doc/ChangeLog: * gdb.texinfo (GDB/MI Miscellaneous Commands): Delete the documentation of "info-ada-exceptions" in the output of the "-list-features" command. Add the documentation of the "ada-exception" entry instead. -- Joel --8GpibOaaTibBMecb Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0001-Replace-info-ada-exceptions-by-ada-exceptions-in-lis.patch" Content-length: 2468 >From 569128117ccf37ff83033a69929d5c76f1d8acb3 Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Tue, 12 Nov 2013 13:43:44 +0400 Subject: [PATCH] Replace "info-ada-exceptions" by "ada-exceptions" in -list-features Rather than having -list-features report support for the GDB/MI commands providing access to Ada exception catchpoints with one entry, and the GDB/MI command providing the list of Ada exceptions with a second entry, this patch merges it all within one single entry. This is OK, because all these commands were added within a short amount of time, and within the same release cycle; and it reduces a bit the size of the output. gdb/ChangeLog: * mi/mi-main.c (mi_cmd_list_features): Replace "info-ada-exceptions" entry with "ada-exceptions". gdb/doc/ChangeLog: * gdb.texinfo (GDB/MI Miscellaneous Commands): Delete the documentation of "info-ada-exceptions" in the output of the "-list-features" command. Add the documentation of the "ada-exception" entry instead. --- gdb/doc/gdb.texinfo | 6 ++++-- gdb/mi/mi-main.c | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index de419ea..2c4234a 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -35080,8 +35080,10 @@ Indicates that changes to breakpoints and breakpoints created via the CLI will be announced via async records. @item ada-task-info Indicates support for the @code{-ada-task-info} command. -@item info-ada-exceptions -Indicates support for the @code{-info-ada-exceptions} command. +@item ada-exceptions +Indicates support for the following commands, all related to Ada +exceptions: @code{-info-ada-exceptions}, @code{-catch-assert} and +@code{-catch-exception}. @end table @subheading The @code{-list-target-features} Command diff --git a/gdb/mi/mi-main.c b/gdb/mi/mi-main.c index bf0fce3..c3f7221 100644 --- a/gdb/mi/mi-main.c +++ b/gdb/mi/mi-main.c @@ -1815,7 +1815,7 @@ mi_cmd_list_features (char *command, char **argv, int argc) ui_out_field_string (uiout, NULL, "data-read-memory-bytes"); ui_out_field_string (uiout, NULL, "breakpoint-notifications"); ui_out_field_string (uiout, NULL, "ada-task-info"); - ui_out_field_string (uiout, NULL, "info-ada-exceptions"); + ui_out_field_string (uiout, NULL, "ada-exceptions"); #if HAVE_PYTHON if (gdb_python_initialized) -- 1.8.1.2 --8GpibOaaTibBMecb--