From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1907 invoked by alias); 27 Jul 2012 18:07:18 -0000 Received: (qmail 1891 invoked by uid 22791); 27 Jul 2012 18:07:15 -0000 X-SWARE-Spam-Status: No, hits=-4.2 required=5.0 tests=AWL,BAYES_00,KHOP_THREADED,RCVD_IN_DNSWL_NONE,RCVD_IN_HOSTKARMA_NO,SPF_SOFTFAIL X-Spam-Check-By: sourceware.org Received: from mtaout20.012.net.il (HELO mtaout20.012.net.il) (80.179.55.166) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 27 Jul 2012 18:06:58 +0000 Received: from conversion-daemon.a-mtaout20.012.net.il by a-mtaout20.012.net.il (HyperSendmail v2007.08) id <0M7T00700Z87Y000@a-mtaout20.012.net.il> for gdb-patches@sourceware.org; Fri, 27 Jul 2012 21:06:37 +0300 (IDT) Received: from HOME-C4E4A596F7 ([87.69.210.75]) by a-mtaout20.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0M7T0076WZN1KS80@a-mtaout20.012.net.il>; Fri, 27 Jul 2012 21:06:37 +0300 (IDT) Date: Fri, 27 Jul 2012 18:07:00 -0000 From: Eli Zaretskii Subject: Re: [PATCH 3/7] attach to command_option-changed observer. In-reply-to: <1343397901-15051-4-git-send-email-yao@codesourcery.com> To: Yao Qi Cc: gdb-patches@sourceware.org Reply-to: Eli Zaretskii Message-id: <83vch9hydn.fsf@gnu.org> References: <1343397901-15051-1-git-send-email-yao@codesourcery.com> <1343397901-15051-4-git-send-email-yao@codesourcery.com> X-IsSubscribed: yes 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 X-SW-Source: 2012-07/txt/msg00705.txt.bz2 > From: Yao Qi > Date: Fri, 27 Jul 2012 22:04:57 +0800 > > --- a/gdb/NEWS > +++ b/gdb/NEWS > @@ -3,6 +3,11 @@ > > *** Changes since GDB 7.5 > > +* MI changes > + > + ** Command option changes are now notified using new async record > + "=option-changed". > + > *** Changes in GDB 7.5 > > * GDB now supports x32 ABI. Visit > diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo > index 68ea817..aa95a91 100644 > --- a/gdb/doc/gdb.texinfo > +++ b/gdb/doc/gdb.texinfo > @@ -27638,6 +27638,9 @@ breakpoint commands; @xref{GDB/MI Breakpoint Commands}. > Note that if a breakpoint is emitted in the result record of a > command, then it will not also be emitted in an async record. > > +@item =option-changed,option=@var{option},value=@var{value} > +Reports that an option of the command @code{set @var{option}} is > +changed to @var{value}. > @end table > > @node GDB/MI Frame Information These parts are OK. Thanks.