From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8436 invoked by alias); 21 Jul 2011 06:47:05 -0000 Received: (qmail 8424 invoked by uid 22791); 21 Jul 2011 06:47:03 -0000 X-SWARE-Spam-Status: No, hits=-2.4 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (38.113.113.100) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 21 Jul 2011 06:46:45 +0000 Received: (qmail 26437 invoked from network); 21 Jul 2011 06:46:43 -0000 Received: from unknown (HELO ?192.168.0.101?) (yao@127.0.0.2) by mail.codesourcery.com with ESMTPA; 21 Jul 2011 06:46:43 -0000 Message-ID: <4E27CB51.1070303@codesourcery.com> Date: Thu, 21 Jul 2011 07:32:00 -0000 From: Yao Qi User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.17) Gecko/20110424 Lightning/1.0b2 Thunderbird/3.1.10 MIME-Version: 1.0 To: Tom Tromey CC: gdb-patches@sourceware.org Subject: [RFA 9/8] New port: TI C6x: Document on qXfer:fdpic:read packet References: <4E263865.2070100@codesourcery.com> In-Reply-To: Content-Type: multipart/mixed; boundary="------------050306010404020104000703" 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: 2011-07/txt/msg00570.txt.bz2 This is a multi-part message in MIME format. --------------050306010404020104000703 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Content-length: 245 On 07/20/2011 10:15 PM, Tom Tromey wrote: > I can't really comment on the patch; but all additions to the remote > protocol should come with a documentation patch. Right. A documentation patch on this new packet is attached. -- Yao (齐尧) --------------050306010404020104000703 Content-Type: text/x-patch; name="0009-fdpic-packet-doc.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0009-fdpic-packet-doc.patch" Content-length: 1988 >From 9db4e71b5d686ea22e9c7b4f0710094d3530977f Mon Sep 17 00:00:00 2001 From: Yao Qi Date: Thu, 21 Jul 2011 11:42:20 +0800 Subject: [PATCH 09/15] fdpic packet doc gdb/doc/ * gdb.texinfo : Document qXfer:fdpic:read packet. --- gdb/doc/gdb.texinfo | 17 +++++++++++++++++ 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 129a46b..37c81b8 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -33654,6 +33654,10 @@ These are the currently defined stub features and their properties: @tab @samp{-} @tab Yes +@item @samp{qXfer:fdpic:read} +@tab No +@tab @samp{-} +@tab Yes @item @samp{QNonStop} @tab No @@ -33765,6 +33769,10 @@ The remote stub understands the @samp{qXfer:threads:read} packet The remote stub understands the @samp{qXfer:traceframe-info:read} packet (@pxref{qXfer traceframe info read}). +@item qXfer:fdpic:read +The remote stub understands the @samp{qXfer:fdpic:read} +packet (@pxref{qXfer fdpic loadmap read}). + @item QNonStop The remote stub understands the @samp{QNonStop} packet (@pxref{QNonStop}). @@ -34020,6 +34028,15 @@ Return a description of the current traceframe's contents. This packet is not probed by default; the remote stub must request it, by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}). +@item qXfer:fdpic:read:@var{annex}:@var{offset},@var{length} +@anchor{qXfer fdpic loadmap read} +Read contents of @code{loadmap}s on the target system. The +annex, either @samp{exec} or @samp{interp}, specifies which @code{loadmap}, +executable @code{loadmap} or interpreter @code{loadmap} to read. + +This packet is not probed by default; the remote stub must request it, +by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}). + @item qXfer:osdata:read::@var{offset},@var{length} @anchor{qXfer osdata read} Access the target's @dfn{operating system information}. -- 1.7.0.4 --------------050306010404020104000703--