rtos: return the correct value if the T or H packets are handled
Change-Id: Iea31e20ee4e35c1a9cb7b93424c92b3f38081067 Signed-off-by: Andreas Fritiofson <andreas.fritiofson@gmail.com> Reviewed-on: http://openocd.zylin.com/38 Tested-by: jenkins Reviewed-by: Evan Hunter <evan@ozhiker.com> Reviewed-by: Peter Stuge <peter@stuge.se>__archive__
parent
1c1771ef6c
commit
3d2305f2e6
|
@ -490,6 +490,7 @@ int gdb_thread_packet(struct connection *connection, char *packet, int packet_si
|
||||||
} else {
|
} else {
|
||||||
gdb_put_packet(connection, "E01", 3); // thread not found
|
gdb_put_packet(connection, "E01", 3); // thread not found
|
||||||
}
|
}
|
||||||
|
return ERROR_OK;
|
||||||
}
|
}
|
||||||
else if ( packet[0] == 'H') // Set current thread ( 'c' for step and continue, 'g' for all other operations )
|
else if ( packet[0] == 'H') // Set current thread ( 'c' for step and continue, 'g' for all other operations )
|
||||||
{
|
{
|
||||||
|
@ -498,6 +499,7 @@ int gdb_thread_packet(struct connection *connection, char *packet, int packet_si
|
||||||
sscanf(packet, "Hg%16" SCNx64, ¤t_threadid);
|
sscanf(packet, "Hg%16" SCNx64, ¤t_threadid);
|
||||||
}
|
}
|
||||||
gdb_put_packet(connection, "OK", 2);
|
gdb_put_packet(connection, "OK", 2);
|
||||||
|
return ERROR_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
return GDB_THREAD_PACKET_NOT_CONSUMED;
|
return GDB_THREAD_PACKET_NOT_CONSUMED;
|
||||||
|
|
Loading…
Reference in New Issue