From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24803 invoked by alias); 2 Mar 2013 16:11:40 -0000 Received: (qmail 24793 invoked by uid 22791); 2 Mar 2013 16:11:38 -0000 X-SWARE-Spam-Status: No, hits=-4.3 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,KHOP_THREADED,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL X-Spam-Check-By: sourceware.org Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 02 Mar 2013 16:11:34 +0000 Received: from svr-orw-fem-01.mgc.mentorg.com ([147.34.98.93]) by relay1.mentorg.com with esmtp id 1UBp25-0007Mg-GF from Hui_Zhu@mentor.com ; Sat, 02 Mar 2013 08:11:33 -0800 Received: from SVR-ORW-FEM-03.mgc.mentorg.com ([147.34.97.39]) by svr-orw-fem-01.mgc.mentorg.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Sat, 2 Mar 2013 08:11:32 -0800 Received: from [127.0.0.1] (147.34.91.1) by svr-orw-fem-03.mgc.mentorg.com (147.34.97.39) with Microsoft SMTP Server id 14.1.289.1; Sat, 2 Mar 2013 08:11:28 -0800 Message-ID: <513224AF.6030603@mentor.com> Date: Sat, 02 Mar 2013 16:11:00 -0000 From: Hui Zhu User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:19.0) Gecko/20130126 Thunderbird/19.0 MIME-Version: 1.0 To: CC: , Pedro Alves , Eli Zaretskii Subject: [PATCH] Support targets that know how to continue over breakpoints[2/4] -- Doc References: <51322425.6090007@mentor.com> In-Reply-To: <51322425.6090007@mentor.com> Content-Type: multipart/mixed; boundary="------------030903010708040105030809" 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: 2013-03/txt/msg00055.txt.bz2 --------------030903010708040105030809 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit Content-length: 337 Hello, This is the doc patch for continue over breakpoints function. Please help me review it. Thanks, Hui 2013-03-03 Luis Machado Pedro Alves Hui Zhu * gdb.texinfo (General Query Packets): Document ContinueOverBreakpoints under qSupported. --------------030903010708040105030809 Content-Type: text/plain; charset="us-ascii"; name="remote-cob-doc.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="remote-cob-doc.txt" Content-length: 1047 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -37383,6 +37383,11 @@ These are the currently defined stub fea @tab @samp{-} @tab No +@item @samp{ContinueOverBreakpoints} +@tab No +@tab @samp{-} +@tab No + @end multitable These are the currently defined stub features, in more detail: @@ -37537,6 +37542,15 @@ See @ref{Bytecode Descriptions} for deta The remote stub supports running a breakpoint's command list itself, rather than reporting the hit to @value{GDBN}. +@item ContinueOverBreakpoints +The remote stub knows how to continue over breakpoints itself. If this +feature is supported by the target, then @value{GDBN} does not need to +lift breakpoints off of the inferior and step over them. This feature +only applies to continue requests. This feature is only defined when the +remote stub supports managing breakpoints itself (see @ref{insert +breakpoint or watchpoint packet}). @value{GDBN} assumes that this feature +is applicable to all breakpoints types supported by the stub. + @end table @item qSymbol:: --------------030903010708040105030809--