Added logging statement
This commit is contained in:
parent
b36dbff869
commit
57103fc3c5
|
@ -781,6 +781,10 @@ static void gdb_signal_reply(struct target *target, struct connection *connectio
|
|||
gdb_connection->ctrl_c = 0;
|
||||
}
|
||||
|
||||
char sig_reply_str[46];
|
||||
memset(sig_reply_str, '\0', 46);
|
||||
strncpy(sig_reply_str, sig_reply, 46);
|
||||
LOG_DEBUG("signal reply: %s", sig_reply_str);
|
||||
gdb_put_packet(connection, sig_reply, sig_reply_len);
|
||||
gdb_connection->frontend_state = TARGET_HALTED;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue