svn commit: r224693 - head/lib/libthread_db

Marius Strobl marius at FreeBSD.org
Sun Aug 7 15:52:14 UTC 2011


Author: marius
Date: Sun Aug  7 15:52:13 2011
New Revision: 224693
URL: http://svn.freebsd.org/changeset/base/224693

Log:
  Change lwp to int64_t as thr_pread_long() always uses a 64-bit value
  in order to account for LP64 targets when cross-debugging on ILP32,
  allowing r224683 to compile on ILP32.
  Note that thr_p{read,write}_{long,ptr}() still incorrectly use the size
  of the respective types on the host rather than that on the target when
  accessing the target address space which still needs to be fixed. This
  means that r224683 alone may not be sufficient to solve the problem it's
  intended to fix when cross-debugging.
  
  Approved by:	re (hrs)

Modified:
  head/lib/libthread_db/libthr_db.c

Modified: head/lib/libthread_db/libthr_db.c
==============================================================================
--- head/lib/libthread_db/libthr_db.c	Sun Aug  7 13:17:35 2011	(r224692)
+++ head/lib/libthread_db/libthr_db.c	Sun Aug  7 15:52:13 2011	(r224693)
@@ -202,7 +202,7 @@ static td_err_e
 pt_ta_map_id2thr(const td_thragent_t *ta, thread_t id, td_thrhandle_t *th)
 {
 	psaddr_t pt;
-	long lwp;
+	int64_t lwp;
 	int ret;
 
 	TDBG_FUNC();
@@ -245,7 +245,7 @@ pt_ta_thr_iter(const td_thragent_t *ta, 
 {
 	td_thrhandle_t th;
 	psaddr_t pt;
-	long lwp;
+	int64_t lwp;
 	int ret;
 
 	TDBG_FUNC();
@@ -368,7 +368,7 @@ pt_ta_event_getmsg(const td_thragent_t *
 
 	psaddr_t pt;
 	td_thr_events_e	tmp;
-	long lwp;
+	int64_t lwp;
 	int ret;
 
 	TDBG_FUNC();
@@ -672,7 +672,7 @@ pt_thr_event_getmsg(const td_thrhandle_t
 	static td_thrhandle_t handle;
 	const td_thragent_t *ta = th->th_ta;
 	psaddr_t pt, pt_temp;
-	long lwp;
+	int64_t lwp;
 	int ret;
 	td_thr_events_e	tmp;
 


More information about the svn-src-all mailing list