Michael Bruck spotted an omission in svn 322
git-svn-id: svn://svn.berlios.de/openocd/trunk@336 b42882b7-edfa-0310-969c-e2dbd0fdcd60__archive__
parent
8529e7c21e
commit
d8456e4826
|
@ -471,13 +471,12 @@ int armv7m_run_algorithm(struct target_s *target, int num_mem_params, mem_param_
|
|||
return retval;
|
||||
}
|
||||
|
||||
int armv7m_arch_state(struct target_s *target, char *buf, int buf_size)
|
||||
int armv7m_arch_state(struct target_s *target)
|
||||
{
|
||||
/* get pointers to arch-specific information */
|
||||
armv7m_common_t *armv7m = target->arch_info;
|
||||
|
||||
snprintf(buf, buf_size,
|
||||
"target halted in %s state due to %s, current mode: %s %s\nxPSR: 0x%8.8x pc: 0x%8.8x",
|
||||
USER("target halted in %s state due to %s, current mode: %s %s\nxPSR: 0x%8.8x pc: 0x%8.8x",
|
||||
armv7m_state_strings[armv7m->core_state],
|
||||
target_debug_reason_strings[target->debug_reason],
|
||||
armv7m_mode_strings[armv7m->core_mode],
|
||||
|
|
|
@ -152,7 +152,7 @@ extern reg_cache_t *armv7m_build_reg_cache(target_t *target);
|
|||
extern enum armv7m_mode armv7m_number_to_mode(int number);
|
||||
extern int armv7m_mode_to_number(enum armv7m_mode mode);
|
||||
|
||||
extern int armv7m_arch_state(struct target_s *target, char *buf, int buf_size);
|
||||
extern int armv7m_arch_state(struct target_s *target);
|
||||
extern int armv7m_get_gdb_reg_list(target_t *target, reg_t **reg_list[], int *reg_list_size);
|
||||
extern int armv7m_invalidate_core_regs(target_t *target);
|
||||
|
||||
|
|
Loading…
Reference in New Issue