diff options
author | kalai <none@none> | 2005-10-04 10:09:58 -0700 |
---|---|---|
committer | kalai <none@none> | 2005-10-04 10:09:58 -0700 |
commit | c2e7b48d563d0e56b74d853118918af352e75cbb (patch) | |
tree | 97f69ed7da60cef3fbe28cbd08089af102f8749e /usr/src/lib | |
parent | bdcaf82257ab2deb6b46efaaa4bc93a1a44b3885 (diff) | |
download | illumos-joyent-c2e7b48d563d0e56b74d853118918af352e75cbb.tar.gz |
6174746 Need to remove remaining references to __ia64
--HG--
rename : usr/src/uts/common/sys/elf_ia64.h => deleted_files/usr/src/uts/common/sys/elf_ia64.h
Diffstat (limited to 'usr/src/lib')
-rw-r--r-- | usr/src/lib/libc_db/common/thread_db.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/usr/src/lib/libc_db/common/thread_db.c b/usr/src/lib/libc_db/common/thread_db.c index 19b7d21ada..7759b68a20 100644 --- a/usr/src/lib/libc_db/common/thread_db.c +++ b/usr/src/lib/libc_db/common/thread_db.c @@ -151,9 +151,6 @@ td_read_uberdata(td_thragent_t *ta_p) if (ta_p->model == PR_MODEL_NATIVE) { uberdata_t uberdata; -#ifdef __ia64 - int i; -#endif if (ps_pdread(ph_p, ta_p->uberdata_addr, &uberdata, sizeof (uberdata)) != PS_OK) @@ -168,18 +165,6 @@ td_read_uberdata(td_thragent_t *ta_p) if (ps_pdread(ph_p, (psaddr_t)uberdata.tdb.tdb_events, ta_p->tdb_events, sizeof (ta_p->tdb_events)) != PS_OK) return (TD_DBERR); -#ifdef __ia64 - /* - * Deal with stupid ia64 function descriptors. - * We have to go indirect to get the actual function address. - */ - for (i = 0; i < TD_MAX_EVENT_NUM - TD_MIN_EVENT_NUM + 1; i++) { - psaddr_t addr; - if (ps_pdread(ph_p, ta_p->tdb_events[i], - &addr, sizeof (addr)) == PS_OK) - ta_p->tdb_events[i] = addr; - } -#endif /* __ia64 */ } else { #if defined(_LP64) && defined(_SYSCALL32) |