diff options
author | Markus Metzger <mmetzger@sourceware.org> | 2013-05-15 07:04:12 +0000 |
---|---|---|
committer | Markus Metzger <mmetzger@sourceware.org> | 2013-05-15 07:04:12 +0000 |
commit | 742ce053c16cb345eeddfdb0acf0c6658ce8e126 (patch) | |
tree | 264ac330df89b1e6d7adae9977cdad162bda12f7 /gdb/doc | |
parent | c495064debc2cae93d0cb3710e4bf13bb9a0738a (diff) | |
download | gdb-742ce053c16cb345eeddfdb0acf0c6658ce8e126.zip gdb-742ce053c16cb345eeddfdb0acf0c6658ce8e126.tar.gz gdb-742ce053c16cb345eeddfdb0acf0c6658ce8e126.tar.bz2 |
The "record goto" command scans its arguments for "begin", "start", or "end".
Turn those into sub-commands.
Document the "record goto" command.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 17 |
2 files changed, 22 insertions, 0 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 908fbb4..b14e17a 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2013-05-15 Markus Metzger <markus.t.metzger@intel.com> + + * gdb.texinfo (Process Record and Replay): Document the + "record goto" command and its sub-commands. + 2013-05-10 Phil Muldoon <pmuldoon@redhat.com> * gdb.texinfo (Backtrace): Add "no-filter" argument. diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 1869d74..02c2408 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -6209,6 +6209,23 @@ usual ``live'' debugging of the process from that state. When the inferior process exits, or @value{GDBN} detaches from it, process record and replay target will automatically stop itself. +@kindex record goto +@item record goto +Go to a specific location in the execution log. There are several +ways to specify the location to go to: + +@table @code +@item record goto begin +@itemx record goto start +Go to the beginning of the execution log. + +@item record goto end +Go to the end of the execution log. + +@item record goto @var{n} +Go to instruction number @var{n} in the execution log. +@end table + @kindex record save @item record save @var{filename} Save the execution log to a file @file{@var{filename}}. |