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/doc | |
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/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 9 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 8 |
2 files changed, 13 insertions, 4 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index eb055e6..507d855 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,12 @@ +2010-02-12 Pedro Alves <pedro@codesourcery.com> + + * 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 + 2010-02-12 Vladimir Prus <vladimir@codesourcery.com> * gdb.texinfo (GDB/MI Result Records): Clarify ^running. diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index d2fd7a8..eb11197 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -9900,11 +9900,11 @@ snapshot with the same value of PC as the current snapshot. @item tfind outside @var{addr1}, @var{addr2} Find the next snapshot whose PC is outside the given range of -addresses. +addresses (exclusive). @item tfind range @var{addr1}, @var{addr2} Find the next snapshot whose PC is between @var{addr1} and -@var{addr2}. @c FIXME: Is the range inclusive or exclusive? +@var{addr2} (inclusive). @item tfind line @r{[}@var{file}:@r{]}@var{n} Find the next snapshot associated with the source line @var{n}. If @@ -30549,12 +30549,12 @@ is a hexadecimal number. @item QTFrame:range:@var{start}:@var{end} Like @samp{QTFrame:@var{n}}, but select the first tracepoint frame after the currently selected frame whose PC is between @var{start} (inclusive) -and @var{end} (exclusive); @var{start} and @var{end} are hexadecimal +and @var{end} (inclusive); @var{start} and @var{end} are hexadecimal numbers. @item QTFrame:outside:@var{start}:@var{end} Like @samp{QTFrame:range:@var{start}:@var{end}}, but select the first -frame @emph{outside} the given range of addresses. +frame @emph{outside} the given range of addresses (exclusive). @item QTStart Begin the tracepoint experiment. Begin collecting data from tracepoint |