diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-04-26 05:03:41 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-04-26 05:03:41 +0000 |
commit | 71fff37b08f261319956b121244752a31940b7d3 (patch) | |
tree | 3919050a2c2b657c32f52f83262fb41c2efd6100 /gdb/breakpoint.c | |
parent | c631edf1cc79aa305924c762642b9160cae94e2d (diff) | |
download | gdb-71fff37b08f261319956b121244752a31940b7d3.zip gdb-71fff37b08f261319956b121244752a31940b7d3.tar.gz gdb-71fff37b08f261319956b121244752a31940b7d3.tar.bz2 |
2005-04-26 Andrew Cagney <cagney@gnu.org>
Rename 'struct exception' to 'struct gdb_exception'.
* wrapper.c: Update.
* varobj.c: Update.
* tui/tui-interp.c: Update.
* remote.c: Update.
* mi/mi-main.c: Update.
* mi/mi-interp.c: Update.
* linux-thread-db.c: Update.
* interps.h: Update.
* interps.c: Update.
* exceptions.h: Update.
* exceptions.c: Update.
* dwarf2loc.c: Update.
* cli/cli-interp.c: Update.
* cli/cli-script.c: Update.
* breakpoint.c: Update.
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index f200362..6393c1f 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -1088,8 +1088,8 @@ in which its expression is valid.\n"), || bpt->owner->type == bp_catch_vfork || bpt->owner->type == bp_catch_exec) { - struct exception e = catch_exception (uiout, insert_catchpoint, - bpt->owner, RETURN_MASK_ERROR); + struct gdb_exception e = catch_exception (uiout, insert_catchpoint, + bpt->owner, RETURN_MASK_ERROR); exception_fprintf (gdb_stderr, e, "warning: inserting catchpoint %d: ", bpt->owner->number); if (e.reason < 0) @@ -5105,7 +5105,7 @@ do_captured_parse_breakpoint (struct ui_out *ui, void *data) static int break_command_1 (char *arg, int flag, int from_tty, struct breakpoint *pending_bp) { - struct exception e; + struct gdb_exception e; int tempflag, hardwareflag; struct symtabs_and_lines sals; struct expression **cond = 0; |