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/gdb.texinfo | |
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/gdb.texinfo')
-rw-r--r-- | 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 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}}. |