Don't show a pre-attached connection in GDB

This commit is contained in:
Palmer Dabbelt 2018-05-30 20:55:27 -07:00
parent 2c30659de8
commit de71abeaba
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ static int riscv_gdb_thread_packet(struct connection *connection, const char *pa
} }
if (strncmp(packet, "qAttached", 9) == 0) { if (strncmp(packet, "qAttached", 9) == 0) {
gdb_put_packet(connection, "1", 1); gdb_put_packet(connection, "0", 1);
return ERROR_OK; return ERROR_OK;
} }