* tracepoint.c (trace_status_command): Add some status output.
This commit is contained in:
parent
818bf354a7
commit
d351301224
2 changed files with 16 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2009-12-30 Stan Shebs <stan@codesourcery.com>
|
||||||
|
|
||||||
|
* tracepoint.c (trace_status_command): Add some status output.
|
||||||
|
|
||||||
20090-12-30 Jan Kratochvil <jan.kratochvil@redhat.com>
|
20090-12-30 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||||
Thiago Jung Bauermann <bauerman@br.ibm.com>
|
Thiago Jung Bauermann <bauerman@br.ibm.com>
|
||||||
|
|
||||||
|
|
|
@ -1736,6 +1736,18 @@ trace_status_command (char *args, int from_tty)
|
||||||
|
|
||||||
/* exported for use by the GUI */
|
/* exported for use by the GUI */
|
||||||
trace_running_p = (target_buf[1] == '1');
|
trace_running_p = (target_buf[1] == '1');
|
||||||
|
|
||||||
|
if (trace_running_p)
|
||||||
|
printf_filtered (_("Trace is running on the target.\n"));
|
||||||
|
else
|
||||||
|
printf_filtered (_("Trace is not running on the target.\n"));
|
||||||
|
|
||||||
|
if (traceframe_number >= 0)
|
||||||
|
printf_filtered (_("Looking at trace frame %d, tracepoint %d.\n"),
|
||||||
|
traceframe_number, tracepoint_number);
|
||||||
|
else
|
||||||
|
printf_filtered (_("Not looking at any trace frame.\n"));
|
||||||
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
error (_("Trace can only be run on remote targets."));
|
error (_("Trace can only be run on remote targets."));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue