From: Thiago Jung Bauermann Date: Thu, 14 Apr 2011 02:20:21 +0000 (+0000) Subject: * breakpoint.c (print_exception_catchpoint): Rename to ... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ba770c9cff8f08be74bf4b5028d060229086e9c4;p=binutils-gdb.git * breakpoint.c (print_exception_catchpoint): Rename to ... (print_it_exception_catchpoint): ... this. (gnu_v3_exception_catchpoint_ops): Update with new name for print_it_exception_catchpoint. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b775d013849..5796795cc56 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +2011-04-13 Thiago Jung Bauermann + + * breakpoint.c (print_exception_catchpoint): Rename to ... + (print_it_exception_catchpoint): ... this. + (gnu_v3_exception_catchpoint_ops): Update with new name + for print_it_exception_catchpoint. + 2011-04-13 Edjunior Machado * MAINTAINERS: Add myself for write after approval privileges. diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 9225d1554c9..8ea6cc9c85a 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -9472,7 +9472,7 @@ catch_exec_command_1 (char *arg, int from_tty, } static enum print_stop_action -print_exception_catchpoint (struct breakpoint *b) +print_it_exception_catchpoint (struct breakpoint *b) { int bp_temp, bp_throw; @@ -9563,7 +9563,7 @@ static struct breakpoint_ops gnu_v3_exception_catchpoint_ops = { NULL, /* remove */ NULL, /* breakpoint_hit */ NULL, /* resources_needed */ - print_exception_catchpoint, + print_it_exception_catchpoint, print_one_exception_catchpoint, NULL, /* print_one_detail */ print_mention_exception_catchpoint,