From: Thiago Jung Bauermann Date: Tue, 24 May 2011 03:03:56 +0000 (+0000) Subject: * breakpont.c (remove_hw_watchpoints): Remove unused function. X-Git-Tag: sid-snapshot-20110601~89 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=77bc418a4ba1ec495402841d1bb556f36b9979ab;p=external%2Fbinutils.git * breakpont.c (remove_hw_watchpoints): Remove unused function. * breakpoint.h remove_hw_watchpoints(): Remove prototype. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 56d1d5c..02845f1 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2011-05-24 Thiago Jung Bauermann + + * breakpont.c (remove_hw_watchpoints): Remove unused function. + * breakpoint.h remove_hw_watchpoints(): Remove prototype. + 2011-05-23 Tom Tromey * c-lang.c (evaluate_subexp_c): Use expect_type if it is not diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 7093104..c1e0013 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -2016,20 +2016,6 @@ remove_breakpoints_pid (int pid) } int -remove_hw_watchpoints (void) -{ - struct bp_location *bl, **blp_tmp; - int val = 0; - - ALL_BP_LOCATIONS (bl, blp_tmp) - { - if (bl->inserted && bl->loc_type == bp_loc_hardware_watchpoint) - val |= remove_breakpoint (bl, mark_uninserted); - } - return val; -} - -int reattach_breakpoints (int pid) { struct cleanup *old_chain; diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h index 7fa705f..0cbd9dd 100644 --- a/gdb/breakpoint.h +++ b/gdb/breakpoint.h @@ -1151,10 +1151,6 @@ extern int ep_is_catchpoint (struct breakpoint *); deletes all breakpoints. */ extern void delete_command (char *arg, int from_tty); -/* Pull all H/W watchpoints from the target. Return non-zero if the - remove fails. */ -extern int remove_hw_watchpoints (void); - /* Manage a software single step breakpoint (or two). Insert may be called twice before remove is called. */ extern void insert_single_step_breakpoint (struct gdbarch *,