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/linux-thread-db.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/linux-thread-db.c')
-rw-r--r-- | gdb/linux-thread-db.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/linux-thread-db.c b/gdb/linux-thread-db.c index 396b2a4..30f9c94 100644 --- a/gdb/linux-thread-db.c +++ b/gdb/linux-thread-db.c @@ -1247,7 +1247,7 @@ thread_db_get_thread_local_address (ptid_t ptid, /* glibc doesn't provide the needed interface. */ if (!td_thr_tls_get_addr_p) { - struct exception e + struct gdb_exception e = { RETURN_ERROR, TLS_NO_LIBRARY_SUPPORT_ERROR, 0 }; throw_exception (e); @@ -1272,7 +1272,7 @@ thread_db_get_thread_local_address (ptid_t ptid, address, we *could* try to build a non-lvalue value from the initialization image. */ - struct exception e + struct gdb_exception e = { RETURN_ERROR, TLS_NOT_ALLOCATED_YET_ERROR, 0 }; throw_exception (e); @@ -1282,7 +1282,7 @@ thread_db_get_thread_local_address (ptid_t ptid, /* Something else went wrong. */ if (err != TD_OK) { - struct exception e + struct gdb_exception e = { RETURN_ERROR, TLS_GENERIC_ERROR, thread_db_err_str (err) }; throw_exception (e); @@ -1296,7 +1296,7 @@ thread_db_get_thread_local_address (ptid_t ptid, return target_beneath->to_get_thread_local_address (ptid, lm, offset); else { - struct exception e + struct gdb_exception e = { RETURN_ERROR, TLS_GENERIC_ERROR, "TLS not supported on this target" }; |