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/remote.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/remote.c')
-rw-r--r-- | gdb/remote.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index 33199bf..7ad9ec2 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -2179,7 +2179,7 @@ static void remote_open_1 (char *name, int from_tty, struct target_ops *target, int extended_p, int async_p) { - struct exception ex; + struct gdb_exception ex; struct remote_state *rs = get_remote_state (); if (name == 0) error (_("To open a remote debug connection, you need to specify what\n" @@ -5358,14 +5358,14 @@ remote_get_thread_local_address (ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset) } else if (result == PACKET_UNKNOWN) { - struct exception e + struct gdb_exception e = { RETURN_ERROR, TLS_GENERIC_ERROR, "Remote target doesn't support qGetTLSAddr packet" }; throw_exception (e); } else { - struct exception e + struct gdb_exception e = { RETURN_ERROR, TLS_GENERIC_ERROR, "Remote target failed to process qGetTLSAddr request" }; throw_exception (e); @@ -5374,7 +5374,7 @@ remote_get_thread_local_address (ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset) } else { - struct exception e + struct gdb_exception e = { RETURN_ERROR, TLS_GENERIC_ERROR, "TLS not supported or disabled on this target" }; throw_exception (e); |