mirror of
https://github.com/linux-msm/openocd.git
synced 2026-02-25 13:15:07 -08:00
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:
@@ -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);
|
||||
|
||||
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.
|
||||
* At some point this might be fixed in GDB, in which case this code can be removed.
|
||||
|
||||
Reference in New Issue
Block a user