breakpoint_t -> struct breakpoint

Remove misleading typedef and redundant suffix from struct breakpoint.
This commit is contained in:
Zachary T Welch
2009-11-13 09:15:32 -08:00
parent 1e51cf049c
commit 53c05c8b1d
13 changed files with 76 additions and 76 deletions

View File

@@ -39,10 +39,10 @@ int mips_m4k_bulk_write_memory(struct target_s *target,
uint32_t address, uint32_t count, uint8_t *buffer);
void mips_m4k_enable_breakpoints(struct target_s *target);
int mips_m4k_set_breakpoint(struct target_s *target, breakpoint_t *bp);
int mips_m4k_unset_breakpoint(struct target_s *target, breakpoint_t *bp);
int mips_m4k_add_breakpoint(struct target_s *target, breakpoint_t *bp);
int mips_m4k_remove_breakpoint(struct target_s *target, breakpoint_t *bp);
int mips_m4k_set_breakpoint(struct target_s *target, struct breakpoint *bp);
int mips_m4k_unset_breakpoint(struct target_s *target, struct breakpoint *bp);
int mips_m4k_add_breakpoint(struct target_s *target, struct breakpoint *bp);
int mips_m4k_remove_breakpoint(struct target_s *target, struct breakpoint *bp);
void mips_m4k_enable_watchpoints(struct target_s *target);
int mips_m4k_set_watchpoint(struct target_s *target, struct watchpoint *wp);