From 879ea1a11b4e9024d1d81ce52647180a17f43871 Mon Sep 17 00:00:00 2001 From: davidxu Date: Tue, 7 Feb 2006 02:12:33 +0000 Subject: [PATCH] Replace ptrace syscall with ps_lgetgregs to check a LWP's existence. --- lib/libthread_db/libpthread_db.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libthread_db/libpthread_db.c b/lib/libthread_db/libpthread_db.c index 5dfc1dd454cb..503d81d09a68 100644 --- a/lib/libthread_db/libpthread_db.c +++ b/lib/libthread_db/libpthread_db.c @@ -264,8 +264,8 @@ pt_ta_map_id2thr(const td_thragent_t *ta, thread_t id, td_thrhandle_t *th) return (P2T(ret)); } /* check lwp */ - ret = ptrace(PT_GETREGS, ta->map[id].lwp, (caddr_t)&gregs, 0); - if (ret != 0) { + ret = ps_lgetregs(ta->ph, ta->map[id].lwp, gregs); + if (ret != PS_OK) { /* no longer exists */ ta->map[id].type = PT_NONE; return (TD_NOTHR);