diff options
author | Kevin Buettner <kevinb@redhat.com> | 2005-04-15 20:55:56 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2005-04-15 20:55:56 +0000 |
commit | 571dd61707032dd543738c7d3b6de91fda3d3138 (patch) | |
tree | 47ba6d60c6a82a8955e7db4699afb3a5f016d0ec /gdb/remote.c | |
parent | 3869131802654869fbe827a727cfe16fb431b92a (diff) | |
download | gdb-571dd61707032dd543738c7d3b6de91fda3d3138.zip gdb-571dd61707032dd543738c7d3b6de91fda3d3138.tar.gz gdb-571dd61707032dd543738c7d3b6de91fda3d3138.tar.bz2 |
* remote.c (remote_get_thread_local_address): Throw a more
meaningful exception when remote target doesn't have support
for the qGetTLSAddr packet.
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index 99b6421..9116617 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -5344,6 +5344,7 @@ remote_get_thread_local_address (ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset) struct remote_state *rs = get_remote_state (); char *buf = alloca (rs->remote_packet_size); char *p = buf; + enum packet_result result; strcpy (p, "qGetTLSAddr:"); p += strlen (p); @@ -5356,13 +5357,21 @@ remote_get_thread_local_address (ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset) putpkt (buf); getpkt (buf, rs->remote_packet_size, 0); - if (packet_ok (buf, &remote_protocol_qGetTLSAddr) == PACKET_OK) + result = packet_ok (buf, &remote_protocol_qGetTLSAddr); + if (result == PACKET_OK) { ULONGEST result; unpack_varlen_hex (buf, &result); return result; } + else if (result == PACKET_UNKNOWN) + { + struct exception e + = { RETURN_ERROR, TLS_GENERIC_ERROR, + "Remote target doesn't support qGetTLSAddr packet" }; + throw_exception (e); + } else { struct exception e |