diff options
author | Yao Qi <yao@codesourcery.com> | 2012-12-15 02:19:21 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2012-12-15 02:19:21 +0000 |
commit | f2a8bc8a74e38b47d3867f20b841186defe4d8fd (patch) | |
tree | 0147999a3ed211f9bfb596a8b4d8bf59ec29342d /gdb/doc | |
parent | 59965708ea682e60eeff63e0499b1e020f79a69c (diff) | |
download | gdb-f2a8bc8a74e38b47d3867f20b841186defe4d8fd.zip gdb-f2a8bc8a74e38b47d3867f20b841186defe4d8fd.tar.gz gdb-f2a8bc8a74e38b47d3867f20b841186defe4d8fd.tar.bz2 |
2012-12-15 Yao Qi <yao@codesourcery.com>
* breakpoint.c (print_one_breakpoint_location): Display the
state of 'installed' of each non-pending location of a tracepoint
in both CLI and MI.
(download_tracepoint_locations): Notify 'breakpoint-modified'
observer if any tracepoint location is downloaded.
* tracepoint.c (start_tracing): Likewise.
(merge_uploaded_tracepoints): Record all modified
tracepoints and notify 'breakpoint-modified' observer for them.
* NEWS: Mention the change for CLI and MI.
gdb/doc:
2012-12-15 Yao Qi <yao@codesourcery.com>
* gdb.texinfo (Listing Tracepoints): New item and example about
'installed on target' output.
Add more in the example about 'installed on target'.
(GDB/MI Breakpoint Commands): Doc about 'installed field.
gdb/testsuite:
2012-12-15 Yao Qi <yao@codesourcery.com>
* gdb.trace/mi-tracepoint-changed.exp (test_pending_resolved): Check
'installed' field in '=breakpoint-modified'.
(test_reconnect): Check 'installed' field in
'=breakpoint-modified' and '=breakpoint-created'.
* gdb.trace/actions.exp: Update test for 'installed' field.
* gdb.trace/change-loc.exp (tracepoint_change_loc_1):
(tracepoint_change_loc_2): Likewise.
Check 'info tracepoint' display nothing else.
* gdb.trace/deltrace.exp: Likewise.
* gdb.trace/infotrace.exp: Likewise.
* gdb.trace/mi-traceframe-changed.exp (test_tfind_remote):
Likewise.
* gdb.trace/passcount.exp: Likewise.
* gdb.trace/tracecmd.exp: Likewise.
* gdb.trace/while-stepping.exp: Likewise.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 7 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 22 |
2 files changed, 25 insertions, 4 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index f65e4b7..f2e779b 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,10 @@ +2012-12-15 Yao Qi <yao@codesourcery.com> + + * gdb.texinfo (Listing Tracepoints): New item and example about + 'installed on target' output. + Add more in the example about 'installed on target'. + (GDB/MI Breakpoint Commands): Doc about 'installed field. + 2012-12-14 Tom Tromey <tromey@redhat.com> * gdb.texinfo (SVR4 Process Information): Mention core files. diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index f96d498..9e80c5b 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -11476,6 +11476,9 @@ tracing: @itemize @bullet @item its passcount as given by the @code{passcount @var{n}} command + +@item +the state about installed on target of each location @end itemize @smallexample @@ -11488,6 +11491,15 @@ Num Type Disp Enb Address What collect globfoo2 end pass count 1200 +2 tracepoint keep y <MULTIPLE> + collect $eip +2.1 y 0x0804859c in func4 at change-loc.h:35 + installed on target +2.2 y 0xb7ffc480 in func4 at change-loc.h:35 + installed on target +2.3 y <PENDING> set_tracepoint +3 tracepoint keep y 0x080485b1 in foo at change-loc.c:29 + not installed on target (@value{GDBP}) @end smallexample @@ -28447,17 +28459,19 @@ The result is in the form: ^done,bkpt=@{number="@var{number}",type="@var{type}",disp="del"|"keep", enabled="y"|"n",addr="@var{hex}",func="@var{funcname}",file="@var{filename}", fullname="@var{full_filename}",line="@var{lineno}",[thread="@var{threadno},] -times="@var{times}"@} +times="@var{times}"[,installed="@var{installed}"]@} @end smallexample @noindent where @var{number} is the @value{GDBN} number for this breakpoint, @var{funcname} is the name of the function where the breakpoint was inserted, @var{filename} is the name of the source file which contains -this function, @var{lineno} is the source line number within that file -and @var{times} the number of times that the breakpoint has been hit +this function, @var{lineno} is the source line number within that file, +@var{times} the number of times that the breakpoint has been hit (always 0 for -break-insert but may be greater for -break-info or -break-list -which use the same output). +which use the same output), and @var{installed}, which is an optional +boolean, is about the state of each non-pending tracepoint location +installed on target or not. Note: this format is open to change. @c An out-of-band breakpoint instead of part of the result? |