From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3854 invoked by alias); 11 Apr 2013 17:49:33 -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 3839 invoked by uid 89); 11 Apr 2013 17:49:33 -0000 X-Spam-SWARE-Status: No, score=-4.3 required=5.0 tests=AWL,BAYES_00,KHOP_THREADED,RCVD_IN_DNSWL_NONE,RCVD_IN_HOSTKARMA_NO,SPF_SOFTFAIL autolearn=no version=3.3.1 Received: from mtaout23.012.net.il (HELO mtaout23.012.net.il) (80.179.55.175) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Thu, 11 Apr 2013 17:49:32 +0000 Received: from conversion-daemon.a-mtaout23.012.net.il by a-mtaout23.012.net.il (HyperSendmail v2007.08) id <0ML300B00QSLH500@a-mtaout23.012.net.il> for gdb-patches@sourceware.org; Thu, 11 Apr 2013 20:49:30 +0300 (IDT) Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout23.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0ML300BIFQUHGP20@a-mtaout23.012.net.il>; Thu, 11 Apr 2013 20:49:30 +0300 (IDT) Date: Thu, 11 Apr 2013 23:00:00 -0000 From: Eli Zaretskii Subject: Re: [PATCH 7/7] range stepping: doc and NEWS In-reply-to: <1365648222-12540-8-git-send-email-yao@codesourcery.com> To: Yao Qi Cc: gdb-patches@sourceware.org Reply-to: Eli Zaretskii Message-id: <83r4ih9cub.fsf@gnu.org> References: <1363006291-13334-1-git-send-email-yao@codesourcery.com> <1365648222-12540-1-git-send-email-yao@codesourcery.com> <1365648222-12540-8-git-send-email-yao@codesourcery.com> X-SW-Source: 2013-04/txt/msg00338.txt.bz2 > From: Yao Qi > Date: Thu, 11 Apr 2013 10:43:42 +0800 > > 2013-04-10 Yao Qi > > * NEWS: Mention range stepping, new packet and new > commands. OK for this part. > diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo > index 9292b94..16059dc 100644 > --- a/gdb/doc/gdb.texinfo > +++ b/gdb/doc/gdb.texinfo > @@ -36375,6 +36375,11 @@ Step. > Step with signal @var{sig}. The signal @var{sig} should be two hex digits. > @item t > Stop. > +@item r @var{start},@var{end} > +Step repeatedly while the PC is within the range [@var{start}, > +@var{end}). Note that a stop reply may be sent at any point even if > +the PC is within the stepping range; for example, it is permissible to > +implement this packet in a degenerate way as a single step operation. > @end table This is also OK. Thanks.