mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 04:49:54 +08:00
2011-11-24 Stan Shebs <stan@codesourcery.com>
* tracepoint.c (cmd_qtstatus): Use plongest instead of %llx.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2011-11-24 Stan Shebs <stan@codesourcery.com>
|
||||||
|
|
||||||
|
* tracepoint.c (cmd_qtstatus): Use plongest instead of %llx.
|
||||||
|
|
||||||
2011-11-17 Stan Shebs <stan@codesourcery.com>
|
2011-11-17 Stan Shebs <stan@codesourcery.com>
|
||||||
|
|
||||||
* tracepoint.c (struct tracepoint): New field traceframe_usage.
|
* tracepoint.c (struct tracepoint): New field traceframe_usage.
|
||||||
|
@ -3448,7 +3448,7 @@ cmd_qtstatus (char *packet)
|
|||||||
"tfree:%x;tsize:%s;"
|
"tfree:%x;tsize:%s;"
|
||||||
"circular:%d;"
|
"circular:%d;"
|
||||||
"disconn:%d;"
|
"disconn:%d;"
|
||||||
"starttime:%llx;stoptime:%llx;"
|
"starttime:%s;stoptime:%s;"
|
||||||
"username:%s:;notes:%s:",
|
"username:%s:;notes:%s:",
|
||||||
tracing ? 1 : 0,
|
tracing ? 1 : 0,
|
||||||
stop_reason_rsp, tracing_stop_tpnum,
|
stop_reason_rsp, tracing_stop_tpnum,
|
||||||
@ -3456,7 +3456,7 @@ cmd_qtstatus (char *packet)
|
|||||||
free_space (), phex_nz (trace_buffer_hi - trace_buffer_lo, 0),
|
free_space (), phex_nz (trace_buffer_hi - trace_buffer_lo, 0),
|
||||||
circular_trace_buffer,
|
circular_trace_buffer,
|
||||||
disconnected_tracing,
|
disconnected_tracing,
|
||||||
tracing_start_time, tracing_stop_time,
|
plongest (tracing_start_time), plongest (tracing_stop_time),
|
||||||
buf1, buf2);
|
buf1, buf2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user