gdb_server: Simple close the connection and not exit openocd.
This patch let openocd running and only close the gdb connection on error. Change-Id: Ifb88e16834b51207cc4c82210eab904ed8d30b71 Signed-off-by: Mathias K <kesmtp@freenet.de> Reviewed-on: http://openocd.zylin.com/523 Tested-by: jenkins Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
This commit is contained in:
parent
0ba480d924
commit
b0cab3d809
|
@ -1088,7 +1088,7 @@ static int gdb_get_register_packet(struct connection *connection,
|
|||
|
||||
if (reg_list_size <= reg_num) {
|
||||
LOG_ERROR("gdb requested a non-existing register");
|
||||
exit(-1);
|
||||
return ERROR_SERVER_REMOTE_CLOSED;
|
||||
}
|
||||
|
||||
if (!reg_list[reg_num]->valid)
|
||||
|
|
Loading…
Reference in New Issue