This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
[FYI][obvious] Rename print_exception_catchpoint.
- From: Thiago Jung Bauermann <bauerman at br dot ibm dot com>
- To: gdb-patches ml <gdb-patches at sourceware dot org>
- Date: Wed, 13 Apr 2011 23:21:52 -0300
- Subject: [FYI][obvious] Rename print_exception_catchpoint.
Hi,
Just committed the following.
--
[]'s
Thiago Jung Bauermann
IBM Linux Technology Center
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.
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
index 9225d15..8ea6cc9 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,