diff options
author | Hafiz Abid Qadeer <abidh@codesourcery.com> | 2013-02-15 09:47:50 +0000 |
---|---|---|
committer | Hafiz Abid Qadeer <abidh@codesourcery.com> | 2013-02-15 09:47:50 +0000 |
commit | f5911ea11965af3dc626c1c6278e45e214fc640c (patch) | |
tree | d6d6fc3e2716aa10f7e537f4601c8b555d9594e8 /gdb/doc | |
parent | ea33f2818ecc5906736f23dd53a7b4364d29b1c4 (diff) | |
download | gdb-f5911ea11965af3dc626c1c6278e45e214fc640c.zip gdb-f5911ea11965af3dc626c1c6278e45e214fc640c.tar.gz gdb-f5911ea11965af3dc626c1c6278e45e214fc640c.tar.bz2 |
2013-02-15 Pedro Alves <pedro@codesourcery.com>
Hafiz Abid Qadeer <abidh@codesourcery.com>
gdb/
* NEWS: Mention new field "trace-file".
* tracepoint.c (trace_status_mi): Output "trace-file" field.
(tfile_open): Record the trace file's filename in the trace
status.
(tfile_files_info): Mention the name of the trace file.
Check the "filename" field explicitely.
(trace_status_command): Explicitely check "filename" field.
(trace_find_command): Ditto.
(trace_find_pc_command): Ditto.
(trace_find_tracepoint_command): Ditto.
(trace_find_line_command): Ditto.
(trace_find_range_command): Ditto.
(trace_find_outside_command): Ditto.
* tracepoint.h (struct trace_status) <from_file>: Rename it
to "filename" and make it hold the trace file's filename
instead of a boolean.
* remote.c (remote_get_trace_status): Initialize "filename"
field with NULL instead of 0.
gdb/doc/
* gdb.texinfo (GDB/MI Tracepoint Commands) <-trace-status>:
Document the "trace-file" field.
gdb/testsuite/
* gdb.trace/tfile.exp: Add test for -trace-status command.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 7c16311..6a16958 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,9 @@ +2013-02-15 Pedro Alves <pedro@codesourcery.com> + Hafiz Abid Qadeer <abidh@codesourcery.com> + + * gdb.texinfo (GDB/MI Tracepoint Commands) <-trace-status>: + Document the "trace-file" field. + 2013-02-07 Doug Evans <dje@google.com> * gdb.texinfo (Machine Code): Clarify argument to disassemble diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index e3f336e..e8ac8c5 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -32094,6 +32094,10 @@ The value of the disconnected tracing flag. @code{1} means that tracing will continue after @value{GDBN} disconnects, @code{0} means that the trace run will stop. +@item trace-file +The filename of the trace file being examined. This field is +optional, and only present when examining a trace file. + @end table @subsubheading @value{GDBN} Command |