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 | 57868fbf1d7d605251bfdfba0a4b11dfad383ba3 (patch) | |
tree | 89dc292e8c1027c8958e5fae2d1585783a17c95e /gdb/wrapper.c | |
parent | 62cd416ebd7f52fa0187b8b8e7e71a4669490005 (diff) | |
download | gdb-57868fbf1d7d605251bfdfba0a4b11dfad383ba3.tar.gz |
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/wrapper.c')
-rw-r--r-- | gdb/wrapper.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gdb/wrapper.c b/gdb/wrapper.c index 39f8eaa44ab..f11193551df 100644 --- a/gdb/wrapper.c +++ b/gdb/wrapper.c @@ -27,7 +27,7 @@ int gdb_parse_exp_1 (char **stringptr, struct block *block, int comma, struct expression **expression) { - volatile struct exception except; + volatile struct gdb_exception except; TRY_CATCH (except, RETURN_MASK_ERROR) { @@ -42,7 +42,7 @@ gdb_parse_exp_1 (char **stringptr, struct block *block, int comma, int gdb_evaluate_expression (struct expression *exp, struct value **value) { - volatile struct exception except; + volatile struct gdb_exception except; TRY_CATCH (except, RETURN_MASK_ERROR) { @@ -57,7 +57,7 @@ gdb_evaluate_expression (struct expression *exp, struct value **value) int gdb_value_fetch_lazy (struct value *val) { - volatile struct exception except; + volatile struct gdb_exception except; TRY_CATCH (except, RETURN_MASK_ERROR) { @@ -72,7 +72,7 @@ gdb_value_fetch_lazy (struct value *val) int gdb_value_equal (struct value *val1, struct value *val2, int *result) { - volatile struct exception except; + volatile struct gdb_exception except; TRY_CATCH (except, RETURN_MASK_ERROR) { @@ -88,7 +88,7 @@ int gdb_value_assign (struct value *val1, struct value *val2, struct value **result) { - volatile struct exception except; + volatile struct gdb_exception except; TRY_CATCH (except, RETURN_MASK_ERROR) { @@ -104,7 +104,7 @@ int gdb_value_subscript (struct value *val1, struct value *val2, struct value **result) { - volatile struct exception except; + volatile struct gdb_exception except; TRY_CATCH (except, RETURN_MASK_ERROR) { @@ -119,7 +119,7 @@ gdb_value_subscript (struct value *val1, struct value *val2, int gdb_value_ind (struct value *val, struct value **result) { - volatile struct exception except; + volatile struct gdb_exception except; TRY_CATCH (except, RETURN_MASK_ERROR) { @@ -134,7 +134,7 @@ gdb_value_ind (struct value *val, struct value **result) int gdb_parse_and_eval_type (char *p, int length, struct type **type) { - volatile struct exception except; + volatile struct gdb_exception except; TRY_CATCH (except, RETURN_MASK_ERROR) { @@ -151,7 +151,7 @@ gdb_value_struct_elt (struct ui_out *uiout, struct value **result, struct value **argp, struct value **args, char *name, int *static_memfuncp, char *err) { - volatile struct exception except; + volatile struct gdb_exception except; TRY_CATCH (except, RETURN_MASK_ALL) { |