diff options
author | Thiago Jung Bauermann <bauerman@br.ibm.com> | 2011-04-14 02:20:21 +0000 |
---|---|---|
committer | Thiago Jung Bauermann <bauerman@br.ibm.com> | 2011-04-14 02:20:21 +0000 |
commit | ba770c9cff8f08be74bf4b5028d060229086e9c4 (patch) | |
tree | 8ce2d7d2208f198c5ea791951ce3395ea83eadfa /gdb/breakpoint.c | |
parent | 914a741b236537489cfb9b8fff3e5ffd0958b328 (diff) | |
download | gdb-ba770c9cff8f08be74bf4b5028d060229086e9c4.zip gdb-ba770c9cff8f08be74bf4b5028d060229086e9c4.tar.gz gdb-ba770c9cff8f08be74bf4b5028d060229086e9c4.tar.bz2 |
* 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.
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 4 |
1 files changed, 2 insertions, 2 deletions
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, |