watchpoint_t -> struct watchpoint

Remove misleading typedef and redundant suffix from struct watchpoint.
This commit is contained in:
Zachary T Welch
2009-11-13 08:42:06 -08:00
parent e7f65c5a11
commit 72b421418f
12 changed files with 49 additions and 49 deletions

View File

@@ -45,9 +45,9 @@ int mips_m4k_add_breakpoint(struct target_s *target, breakpoint_t *bp);
int mips_m4k_remove_breakpoint(struct target_s *target, breakpoint_t *bp);
void mips_m4k_enable_watchpoints(struct target_s *target);
int mips_m4k_set_watchpoint(struct target_s *target, watchpoint_t *wp);
int mips_m4k_unset_watchpoint(struct target_s *target, watchpoint_t *wp);
int mips_m4k_add_watchpoint(struct target_s *target, watchpoint_t *wp);
int mips_m4k_remove_watchpoint(struct target_s *target, watchpoint_t *wp);
int mips_m4k_set_watchpoint(struct target_s *target, struct watchpoint *wp);
int mips_m4k_unset_watchpoint(struct target_s *target, struct watchpoint *wp);
int mips_m4k_add_watchpoint(struct target_s *target, struct watchpoint *wp);
int mips_m4k_remove_watchpoint(struct target_s *target, struct watchpoint *wp);
#endif /*MIPS_M4K_H*/