diff options
author | Pedro Alves <palves@redhat.com> | 2010-02-12 16:15:24 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2010-02-12 16:15:24 +0000 |
commit | 081dfbf778bccf638e777fd4babc2911d0a59306 (patch) | |
tree | 3d3aaa2623e490c254de9d166cb5ca54948f3de3 /gdb/tracepoint.c | |
parent | 9d0e849713a37ee589c203792f8450786733ee63 (diff) | |
download | gdb-081dfbf778bccf638e777fd4babc2911d0a59306.zip gdb-081dfbf778bccf638e777fd4babc2911d0a59306.tar.gz gdb-081dfbf778bccf638e777fd4babc2911d0a59306.tar.bz2 |
gdb/doc/
* gdb.texinfo (Using the Collected Data): Specify that the address
range of `tfind outsize' is exclusive, and that the address range
of `tfind range' is inclusive.
(Tracepoint Packets): Specify that the address range of
`QTFrame:range' is inclusive, and that the address range of
`QTFrame:outside' is exclusive
gdb/
* tracepoint.c (_initialize_tracepoint): Specify that the address
range of `tfind outsize' is exclusive, and that the address range
of `tfind range' is inclusive, in the commands' help strings.
Diffstat (limited to 'gdb/tracepoint.c')
-rw-r--r-- | gdb/tracepoint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index e27b690..f38d6c1 100644 --- a/gdb/tracepoint.c +++ b/gdb/tracepoint.c @@ -3610,12 +3610,12 @@ No argument means forward by one frame; '-' means backward by one frame."), &tfindlist, "tfind ", 1, &cmdlist); add_cmd ("outside", class_trace, trace_find_outside_command, _("\ -Select a trace frame whose PC is outside the given range.\n\ +Select a trace frame whose PC is outside the given range (exclusive).\n\ Usage: tfind outside addr1, addr2"), &tfindlist); add_cmd ("range", class_trace, trace_find_range_command, _("\ -Select a trace frame whose PC is in the given range.\n\ +Select a trace frame whose PC is in the given range (inclusive).\n\ Usage: tfind range addr1,addr2"), &tfindlist); |