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:
Mathias K 2012-03-15 09:11:19 +01:00 committed by Spencer Oliver
parent 0ba480d924
commit b0cab3d809
1 changed files with 1 additions and 1 deletions

View File

@ -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)