forked from auracaster/openocd
Add target_step wrapper:
- replaces all calls to target->type->step. git-svn-id: svn://svn.berlios.de/openocd/trunk@1965 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
@@ -1366,7 +1366,8 @@ int gdb_step_continue_packet(connection_t *connection, target_t *target, char *p
|
||||
else if (packet[0] == 's')
|
||||
{
|
||||
LOG_DEBUG("step");
|
||||
retval=target->type->step(target, current, address, 0); /* step at current or address, don't handle breakpoints */
|
||||
/* step at current or address, don't handle breakpoints */
|
||||
retval = target_step(target, current, address, 0);
|
||||
}
|
||||
return retval;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user