aboutsummaryrefslogtreecommitdiff
path: root/gdb/wrapper.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2005-04-26 05:03:41 +0000
committerAndrew Cagney <cagney@redhat.com>2005-04-26 05:03:41 +0000
commit71fff37b08f261319956b121244752a31940b7d3 (patch)
tree3919050a2c2b657c32f52f83262fb41c2efd6100 /gdb/wrapper.c
parentc631edf1cc79aa305924c762642b9160cae94e2d (diff)
downloadgdb-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/wrapper.c')
-rw-r--r--gdb/wrapper.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/gdb/wrapper.c b/gdb/wrapper.c
index 39f8eaa..f111935 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)
{