* [PATCH 3/4] Document RSP support for exec events
@ 2014-04-02 22:24 Breazeal, Don
2014-04-03 2:50 ` Eli Zaretskii
0 siblings, 1 reply; 3+ messages in thread
From: Breazeal, Don @ 2014-04-02 22:24 UTC (permalink / raw)
To: gdb-patches
[-- Attachment #1: Type: text/plain, Size: 194 bytes --]
This patch adds documentation of the new RSP support for exec events.
doc/
2014-04-02 Don Breazeal <donb@codesourcery.com>
* gdb.texinfo: Document RSP support for exec events.
[-- Attachment #2: 0003-remote-exec-doc.patch --]
[-- Type: application/octet-stream, Size: 877 bytes --]
doc/
2014-03-31 Don Breazeal <donb@codesourcery.com>
* gdb.texinfo: Document RSP support for exec events.
---
gdb/doc/gdb.texinfo | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
index b218769..f1c8bec 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 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.8.1.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 3/4] Document RSP support for exec events
2014-04-02 22:24 [PATCH 3/4] Document RSP support for exec events Breazeal, Don
@ 2014-04-03 2:50 ` Eli Zaretskii
2014-04-04 16:29 ` Breazeal, Don
0 siblings, 1 reply; 3+ messages in thread
From: Eli Zaretskii @ 2014-04-03 2:50 UTC (permalink / raw)
To: Breazeal, Don; +Cc: gdb-patches
> From: "Breazeal, Don" <donb@codesourcery.com>
> 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 <donb@codesourcery.com>
>
> * 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.
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [PATCH 3/4] Document RSP support for exec events
2014-04-03 2:50 ` Eli Zaretskii
@ 2014-04-04 16:29 ` Breazeal, Don
0 siblings, 0 replies; 3+ messages in thread
From: Breazeal, Don @ 2014-04-04 16:29 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: gdb-patches
[-- Attachment #1: Type: text/plain, Size: 1301 bytes --]
> -----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" <donb@codesourcery.com>
> > 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 <donb@codesourcery.com>
> >
> > * 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.
Thanks for the review. Here is the updated patch. I don't have write access, so if and when the patch series is approved I'll need help with the commit.
Thanks
--Don
doc/
2014-04-03 Don Breazeal <donb@codesourcery.com>
* gdb.texinfo (Stop Reply Packets): Document RSP support
for exec events.
[-- Attachment #2: 0003v2-remote-exec-doc.patch --]
[-- Type: application/octet-stream, Size: 889 bytes --]
doc/
2014-04-03 Don Breazeal <donb@codesourcery.com>
* gdb.texinfo (Stop Reply Packets): Document RSP support
for exec events.
gdb/doc/gdb.texinfo | 6 ++++++
1 file changed, 6 insertions(+)
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
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-04-04 16:29 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-02 22:24 [PATCH 3/4] Document RSP support for exec events Breazeal, Don
2014-04-03 2:50 ` Eli Zaretskii
2014-04-04 16:29 ` Breazeal, Don
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).