From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29811 invoked by alias); 20 Mar 2012 15:47:01 -0000 Received: (qmail 29797 invoked by uid 22791); 20 Mar 2012 15:47:00 -0000 X-SWARE-Spam-Status: No, hits=-1.6 required=5.0 tests=AWL,BAYES_00 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; Tue, 20 Mar 2012 15:46:48 +0000 Received: from svr-orw-exc-10.mgc.mentorg.com ([147.34.98.58]) by relay1.mentorg.com with esmtp id 1SA1Gp-0004Dy-Om from Hui_Zhu@mentor.com for gdb-patches@sourceware.org; Tue, 20 Mar 2012 08:46:47 -0700 Received: from SVR-ORW-FEM-02.mgc.mentorg.com ([147.34.96.206]) by SVR-ORW-EXC-10.mgc.mentorg.com with Microsoft SMTPSVC(6.0.3790.4675); Tue, 20 Mar 2012 08:46:46 -0700 Received: from [127.0.0.1] (147.34.91.1) by svr-orw-fem-02.mgc.mentorg.com (147.34.96.168) with Microsoft SMTP Server id 14.1.289.1; Tue, 20 Mar 2012 08:46:46 -0700 Message-ID: <4F68A664.1040305@mentor.com> Date: Tue, 20 Mar 2012 15:47:00 -0000 From: Hui Zhu User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:11.0) Gecko/20120310 Thunderbird/11.0 MIME-Version: 1.0 To: Yao Qi CC: , Stan Shebs Subject: Re: [PATCH] Add autoload-breakpoints [7/7] autoload-breakpoints doc References: <4F6450FF.1070103@mentor.com> <4F66B01C.2000801@codesourcery.com> In-Reply-To: <4F66B01C.2000801@codesourcery.com> Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 7bit 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-03/txt/msg00742.txt.bz2 On 03/19/12 12:03, Yao Qi wrote: > On 03/17/2012 04:53 PM, Hui Zhu wrote: >> +@subsection Autoload-breakpints control packets >> +@table @samp >> +@item @samp{QBDP}@var{autoload-breakpoints base format} >> +@value{GDBN} and the stub use this packet to control >> +the autoload-breakpoints in the remote. The stub will translate >> +this packet through reportAsync Packets. > > Do we document packet "^QBDP" in "@node ReportAsync Packets"? It is a > different packet from "QBDP", although the syntax is almost the same. No, the QBDP is not need ^ now. It is translate through simple GDB rsp packet format now. > > b.t.w, the name "^QBDP" doesn't reflect its functionality accurately. > Literally, "Q{B|T}DP" means "download points", however, this async > report "^QBDP" is about remote stub telling GDB that it has an autoload > breakpoint in stream, please pick it up. So this packet should be named > "^AutoloadBreak", or something similar. It have download function too, both gdb to stub and stub to gdb use it. Thanks, Hui