diff options
Diffstat (limited to 'gdb/tracepoint.h')
-rw-r--r-- | gdb/tracepoint.h | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/gdb/tracepoint.h b/gdb/tracepoint.h index c273f25..1ae5c6c 100644 --- a/gdb/tracepoint.h +++ b/gdb/tracepoint.h @@ -95,11 +95,21 @@ struct trace_status int stopping_tracepoint; + /* Number of traceframes currently in the buffer. */ + int traceframe_count; - unsigned long long buffer_size; + /* Number of traceframes created since start of run. */ + + int traceframes_created; + + /* Total size of the target's trace buffer. */ + + int buffer_size; + + /* Unused bytes left in the target's trace buffer. */ - unsigned long long buffer_free; + int buffer_free; }; struct trace_status *current_trace_status (void); |