mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 04:00:07 +08:00
gdbserver/
2012-02-02 Pedro Alves <palves@redhat.com> * tracepoint.c (cmd_qtminftpilen): Return 0 if there's no current inferior. gdb/ 2012-02-02 Pedro Alves <palves@redhat.com> * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if the current inferior has no execution. Make sure the current remote process matches gdb's current inferior.
This commit is contained in:
@ -3729,6 +3729,13 @@ cmd_qtstmat (char *packet)
|
||||
static void
|
||||
cmd_qtminftpilen (char *packet)
|
||||
{
|
||||
if (current_inferior == NULL)
|
||||
{
|
||||
/* Indicate that the minimum length is currently unknown. */
|
||||
strcpy (packet, "0");
|
||||
return;
|
||||
}
|
||||
|
||||
sprintf (packet, "%x", target_get_min_fast_tracepoint_insn_len ());
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user