From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7461 invoked by alias); 30 Apr 2014 19:18:21 -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 7270 invoked by uid 89); 30 Apr 2014 19:18:20 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.8 required=5.0 tests=AWL,BAYES_20 autolearn=ham version=3.3.2 X-HELO: relay1.mentorg.com Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 30 Apr 2014 19:18:15 +0000 Received: from svr-orw-fem-01.mgc.mentorg.com ([147.34.98.93]) by relay1.mentorg.com with esmtp id 1Wfa1E-0004yL-GQ from donb@codesourcery.com for gdb-patches@sourceware.org; Wed, 30 Apr 2014 12:18:12 -0700 Received: from SVR-ORW-FEM-04.mgc.mentorg.com ([147.34.97.41]) by svr-orw-fem-01.mgc.mentorg.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Wed, 30 Apr 2014 12:18:12 -0700 Received: from build4-lucid-cs (147.34.91.1) by svr-orw-fem-04.mgc.mentorg.com (147.34.97.41) with Microsoft SMTP Server id 14.2.247.3; Wed, 30 Apr 2014 12:18:11 -0700 Received: by build4-lucid-cs (Postfix, from userid 1905) id 0BE2840DCF; Wed, 30 Apr 2014 12:18:10 -0700 (PDT) From: Don Breazeal To: CC: Don Breazeal Subject: [PATCH 3/4][REPOST] Document RSP support for Linux exec events Date: Wed, 30 Apr 2014 19:18:00 -0000 Message-ID: <1398885482-8449-4-git-send-email-donb@codesourcery.com> In-Reply-To: <1398885482-8449-1-git-send-email-donb@codesourcery.com> References: <1398885482-8449-1-git-send-email-donb@codesourcery.com> MIME-Version: 1.0 Content-Type: text/plain X-IsSubscribed: yes X-SW-Source: 2014-04/txt/msg00650.txt.bz2 From: Don Breazeal [Reposting to eliminate unexpected attachment type.] This patch adds documentation of the new RSP support for exec events. This patch was approved 4/4/2014 per this email: > -----Original Message----- > From: Eli Zaretskii [mailto:eliz@gnu.org] > Sent: Wednesday, April 02, 2014 7:50 PM > To: Breazeal, Don > Cc: gdb-patches@sourceware.org > Subject: Re: [PATCH 3/4] Document RSP support for exec events > > > From: "Breazeal, Don" > > Date: Wed, 2 Apr 2014 22:24:18 +0000 > > > > This patch adds documentation of the new RSP support for exec events. > > Thanks. > > > doc/ > > 2014-04-02 Don Breazeal > > > > * gdb.texinfo: Document RSP support for exec events. > > Please state the name of the node where you make the change. > > > +@cindex exec events, remote reply > > +@item exec > > +The packet indicates that execve was called, and @var{r} is the > > +absolute pathname of the file that was executed, in hex. This is > > +only applicable to certain targets. > > + > > "execve" should be in @code, as it is a C symbol. > > OK with that change. doc/ 2014-04-03 Don Breazeal * gdb.texinfo (Stop Reply Packets): Document RSP support for exec events. --- gdb/doc/gdb.texinfo | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index b218769..bb9dfb8 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -34582,6 +34582,12 @@ The packet indicates that the loaded libraries have changed. @value{GDBN} should use @samp{qXfer:libraries:read} to fetch a new list of loaded libraries. @var{r} is ignored. +@cindex exec events, remote reply +@item exec +The packet indicates that @code{execve} was called, and @var{r} is the +absolute pathname of the file that was executed, in hex. This is +only applicable to certain targets. + @cindex replay log events, remote reply @item replaylog The packet indicates that the target cannot continue replaying -- 1.7.0.4