Handle qTStatus

This commit is contained in:
Palmer Dabbelt 2018-05-30 04:30:48 -07:00
parent 330b11309d
commit 045d5b0142
1 changed files with 5 additions and 0 deletions

View File

@ -129,6 +129,11 @@ static int riscv_gdb_thread_packet(struct connection *connection, const char *pa
return ERROR_OK;
}
if (strcmp(packet, "qTStatus", 8) == 0) {
gdb_put_packet("T0");
return ERROR_OK;
}
return GDB_THREAD_PACKET_NOT_CONSUMED;
case 'Q':