diff options
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); |