* breakpoint.c (print_exception_catchpoint): Rename to ...
authorThiago Jung Bauermann <bauerman@br.ibm.com>
Thu, 14 Apr 2011 02:20:21 +0000 (02:20 +0000)
committerThiago Jung Bauermann <bauerman@br.ibm.com>
Thu, 14 Apr 2011 02:20:21 +0000 (02:20 +0000)
(print_it_exception_catchpoint): ... this.
(gnu_v3_exception_catchpoint_ops): Update with new name
for print_it_exception_catchpoint.

gdb/ChangeLog
gdb/breakpoint.c

index b775d013849bfac9b39e26ded179558071efb8b7..5796795cc56688bda6501e9bea32cd0ac746ed9e 100644 (file)
@@ -1,3 +1,10 @@
+2011-04-13  Thiago Jung Bauermann  <bauerman@br.ibm.com>
+
+       * 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  <emachado@linux.vnet.ibm.com>
 
        * MAINTAINERS: Add myself for write after approval privileges.
index 9225d1554c966a0d894f2ef0eafc891ee7924c36..8ea6cc9c85aaf4e4d4d27f78f0a332a0df88d4aa 100644 (file)
@@ -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,