gdb_report_data_abort now ignores all target read errors, including address space wraps. Hopefully works around problems in 6.8
git-svn-id: svn://svn.berlios.de/openocd/trunk@1099 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
parent
74bb0cd244
commit
fdb7a1705d
|
@ -1138,7 +1138,7 @@ int gdb_read_memory_packet(connection_t *connection, target_t *target, char *pac
|
||||||
|
|
||||||
retval = target_read_buffer(target, addr, len, buffer);
|
retval = target_read_buffer(target, addr, len, buffer);
|
||||||
|
|
||||||
if ((retval == ERROR_TARGET_DATA_ABORT) && (!gdb_report_data_abort))
|
if ((retval!=ERROR_OK)&&!gdb_report_data_abort)
|
||||||
{
|
{
|
||||||
/* TODO : Here we have to lie and send back all zero's lest stack traces won't work.
|
/* TODO : Here we have to lie and send back all zero's lest stack traces won't work.
|
||||||
* At some point this might be fixed in GDB, in which case this code can be removed.
|
* At some point this might be fixed in GDB, in which case this code can be removed.
|
||||||
|
|
Loading…
Reference in New Issue