From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1172 invoked by alias); 25 May 2013 21:05:56 -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 1162 invoked by uid 89); 25 May 2013 21:05:55 -0000 X-Spam-SWARE-Status: No, score=-6.9 required=5.0 tests=AWL,BAYES_00,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.1 Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Sat, 25 May 2013 21:05:55 +0000 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r4PL5plr026473 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Sat, 25 May 2013 17:05:51 -0400 Received: from host2.jankratochvil.net (ovpn-116-16.ams2.redhat.com [10.36.116.16]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r4PL5lk6030890 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Sat, 25 May 2013 17:05:49 -0400 Date: Sat, 25 May 2013 21:05:00 -0000 From: Jan Kratochvil To: gdb-patches@sourceware.org Cc: Tom Tromey , Eli Zaretskii Subject: Re: [RFA 3/7 take 2] New gdbserver functionality Message-ID: <20130525210546.GB22288@host2.jankratochvil.net> References: <877giyzt2p.fsf@fleche.redhat.com> <20130524074613.GA4602@blade.nx> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20130524074613.GA4602@blade.nx> User-Agent: Mutt/1.5.21 (2010-09-15) X-IsSubscribed: yes X-SW-Source: 2013-05/txt/msg00940.txt.bz2 On Fri, 24 May 2013 09:46:13 +0200, Gary Benson wrote: > 2013-05-23 Gary Benson > > * gdb.texinfo (General Query Packets/qSupported): Added > "qXfer:libraries-svr4:read" and "augmented-libraries-svr4-read". > to the table of currently defined stub features. > Added a more detailed entry for "augmented-libraries-svr4-read". > (General Query Packets/qXfer:libraries-svr4:read): Documented > the augmented form of this packet. > > diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo > index b68d2f8..dfe42c9 100644 > --- a/gdb/doc/gdb.texinfo > +++ b/gdb/doc/gdb.texinfo [...] > +@table @code > +@item start=@var{address} > +A hexidecimal number specifying the address of the @samp{struct typo: hexadecimal > +link_map} to start reading the library list from. If unset or zero > +then the first @samp{struct link_map} in the library list will be > +chosen as the starting point. > + > +@item prev=@var{address} > +A hexidecimal number specifying the address of the @samp{struct typo: hexadecimal > +link_map} immediately preceding the @samp{struct link_map} > +specified by the @samp{start} argument. If unset or zero then > +the remote stub will expect that no @samp{struct link_map} > +exists prior to the starting point. [...] But otherwise it is for approval by Eli. Thanks, Jan