From 53c05c8b1d5718b2acf5dbe0eb517dd427340041 Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Fri, 13 Nov 2009 09:15:32 -0800 Subject: breakpoint_t -> struct breakpoint Remove misleading typedef and redundant suffix from struct breakpoint. --- src/target/target_type.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/target/target_type.h') diff --git a/src/target/target_type.h b/src/target/target_type.h index 21d7295d..33288797 100644 --- a/src/target/target_type.h +++ b/src/target/target_type.h @@ -131,12 +131,12 @@ struct target_type_s * * Upon GDB connection all breakpoints/watchpoints are cleared. */ - int (*add_breakpoint)(struct target_s *target, breakpoint_t *breakpoint); + int (*add_breakpoint)(struct target_s *target, struct breakpoint *breakpoint); /* remove breakpoint. hw will only be updated if the target is currently halted. * However, this method can be invoked on unresponsive targets. */ - int (*remove_breakpoint)(struct target_s *target, breakpoint_t *breakpoint); + int (*remove_breakpoint)(struct target_s *target, struct breakpoint *breakpoint); int (*add_watchpoint)(struct target_s *target, struct watchpoint *watchpoint); /* remove watchpoint. hw will only be updated if the target is currently halted. * However, this method can be invoked on unresponsive targets. -- cgit v1.2.3