gdb/doc/
authorPedro Alves <palves@redhat.com>
Fri, 12 Feb 2010 16:15:24 +0000 (16:15 +0000)
committerPedro Alves <palves@redhat.com>
Fri, 12 Feb 2010 16:15:24 +0000 (16:15 +0000)
* 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.

gdb/ChangeLog
gdb/doc/ChangeLog
gdb/doc/gdb.texinfo
gdb/tracepoint.c

index f2df5df10b41eee5984f4dec337abdfad96998e2..bf7acb0f035f545a071522c9a3f36d4481cc41df 100644 (file)
@@ -1,3 +1,9 @@
+2010-02-12  Pedro Alves  <pedro@codesourcery.com>
+
+       * 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.
+
 2010-02-12  Joel Brobecker  <brobecker@adacore.com>
 
        Spurious "dll not found" error messages on x64-windows.
index eb055e6b445ccb044838a3aa5e2b38b486543733..507d855c1b7995b4423295c33992b80338f9a16e 100644 (file)
@@ -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.
index d2fd7a82ca1644cf85137cc04cd79901586ce749..eb111971ed0208ba44b02c4f4c7905e9673c73b4 100644 (file)
@@ -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
index e27b6905a18e71afae48d012646c57028789c4e7..f38d6c1efb50a1b3a54e2f690bccc8cf1618aa84 100644 (file)
@@ -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);
 
This page took 0.050193 seconds and 4 git commands to generate.