From 56a6a23ea6c71c07b33d8c1c4e8f83d14380e4fe Mon Sep 17 00:00:00 2001 From: David Xu Date: Sat, 26 Oct 2002 01:26:36 +0000 Subject: [PATCH] Backout revision 1.48. --- sys/kern/kern_kse.c | 3 +-- sys/kern/kern_thread.c | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/sys/kern/kern_kse.c b/sys/kern/kern_kse.c index 0a1e485a423..2b4ad4a19e2 100644 --- a/sys/kern/kern_kse.c +++ b/sys/kern/kern_kse.c @@ -1473,8 +1473,7 @@ thread_single(int force_exit) if (TD_IS_SUSPENDED(td2)) continue; /* maybe other inhibitted states too? */ - if (TD_IS_SLEEPING(td2) && - (td2->td_flags & TDF_SINTR)) + if (TD_IS_SLEEPING(td2)) thread_suspend_one(td2); } } diff --git a/sys/kern/kern_thread.c b/sys/kern/kern_thread.c index 0a1e485a423..2b4ad4a19e2 100644 --- a/sys/kern/kern_thread.c +++ b/sys/kern/kern_thread.c @@ -1473,8 +1473,7 @@ thread_single(int force_exit) if (TD_IS_SUSPENDED(td2)) continue; /* maybe other inhibitted states too? */ - if (TD_IS_SLEEPING(td2) && - (td2->td_flags & TDF_SINTR)) + if (TD_IS_SLEEPING(td2)) thread_suspend_one(td2); } }