2010-04-09 Stan Shebs <stan@codesourcery.com>
authorStan Shebs <shebs@codesourcery.com>
Fri, 9 Apr 2010 20:46:40 +0000 (20:46 +0000)
committerStan Shebs <shebs@codesourcery.com>
Fri, 9 Apr 2010 20:46:40 +0000 (20:46 +0000)
* tracepoint.c (trace_status_mi): Report frames created.

* gdb.texinfo (gdb/mi Tracepoint Commands) <-trace-status>:
Describe the `frames-created' field, tweak grammar.

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

index f7ab074f10c2e32dd957097d119c716f3b743a2e..7a42846e5125afa32e2c9a4777bb8e8233dca284 100644 (file)
@@ -1,5 +1,7 @@
 2010-04-09  Stan Shebs  <stan@codesourcery.com>
 
+       * tracepoint.c (trace_status_mi): Report frames created.
+
        * tracepoint.c (trace_dump_command): Include default-collect
        expressions.
 
index 6c0f9ee09c1e56c251c0f7605701b5e1a19cf3c8..e914bf020171741d57feda77690948ad253e0ffe 100644 (file)
@@ -1,3 +1,8 @@
+2010-04-09  Stan Shebs  <stan@codesourcery.com>
+
+       * gdb.texinfo (gdb/mi Tracepoint Commands) <-trace-status>:
+       Describe the `frames-created' field, tweak grammar.
+
 2010-04-09  Pedro Alves  <pedro@codesourcery.com>
 
        * gdb.texinfo (gdb/mi Tracepoint Commands) <-trace-status>:
index f660959af2e94fc7d545d201489cc9f5836364c2..887547bf598910db34446f3ebb55fafe6e1af846 100644 (file)
@@ -26421,13 +26421,16 @@ present iff the @samp{stop-reason} field has the value of
 @samp{passcount}.
 
 @item frames
-This field is an integer number of currently collected frames.  This
-field is optional.
+@itemx frames-created
+The @samp{frames} field is a count of the total number of trace frames
+in the trace buffer, while @samp{frames-created} is the total created
+during the run, including ones that were discarded, such as when a
+circular trace buffer filled up.  Both fields are optional.
 
 @item buffer-size
 @itemx buffer-free
 These fields tell the current size of the tracing buffer and the
-remaining space.  These field is optional.
+remaining space.  These fields are optional.
 
 @item circular
 The value of the circular trace buffer flag.  @code{1} means that the
index f5fa8c85cad4235d63897a21826f2fbf179e61e8..d3160a9336f4c66982b0d5f8f6bb0bdf696b40ae 100644 (file)
@@ -1798,6 +1798,8 @@ trace_status_mi (int on_stop)
 
   if (ts->traceframe_count != -1)
     ui_out_field_int (uiout, "frames", ts->traceframe_count);
+  if (ts->traceframes_created != -1)
+    ui_out_field_int (uiout, "frames-created", ts->traceframes_created);
   if (ts->buffer_size != -1)
     ui_out_field_int (uiout, "buffer-size", ts->buffer_size);
   if (ts->buffer_free != -1)