From 01d723e6ba82714f9ffc4826a8169dfaf321a7d0 Mon Sep 17 00:00:00 2001 From: "Michael I. Bushnell" Date: Wed, 8 Nov 1995 18:10:25 +0000 Subject: (S_proc_getprocinfo): Inhibit PI_FETCH_THREAD_WAITS for now. --- proc/info.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/proc/info.c b/proc/info.c index 063434d1..f8fcda2e 100644 --- a/proc/info.c +++ b/proc/info.c @@ -321,9 +321,12 @@ S_proc_getprocinfo (struct proc *callerp, if (!p) return ESRCH; - if (flags & (PI_FETCH_THREAD_SCHED | PI_FETCH_THREAD_BASIC - | PI_FETCH_THREAD_WAITS)) - flags |= PI_FETCH_THREADS; + /* Avoid nasty blockage; awaiting further thought. XXX */ + flags &= ~PI_FETCH_THREAD_WAITS; + + if (flags & (PI_FETCH_THREAD_SCHED | PI_FETCH_THREAD_BASIC + | PI_FETCH_THREAD_WAITS)) + flags |= PI_FETCH_THREADS; if (flags & PI_FETCH_THREADS) { -- cgit v1.2.3