summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_condvar.c
diff options
context:
space:
mode:
authorjulian <julian@FreeBSD.org>2002-10-25 07:11:12 +0000
committerjulian <julian@FreeBSD.org>2002-10-25 07:11:12 +0000
commit4ea837f673e35a1bd44b7a3a83d08c96d42e1b81 (patch)
tree45eb9c5b87d56720d1194f404349dd8746e61573 /sys/kern/kern_condvar.c
parent59e43a0396de61b22eadda85d6d3d4586710c0b9 (diff)
downloadFreeBSD-src-4ea837f673e35a1bd44b7a3a83d08c96d42e1b81.zip
FreeBSD-src-4ea837f673e35a1bd44b7a3a83d08c96d42e1b81.tar.gz
More work on the interaction between suspending and sleeping threads.
Also clean up some code used with 'single-threading'. Reviewed by: davidxu
Diffstat (limited to 'sys/kern/kern_condvar.c')
-rw-r--r--sys/kern/kern_condvar.c21
1 files changed, 4 insertions, 17 deletions
diff --git a/sys/kern/kern_condvar.c b/sys/kern/kern_condvar.c
index 3ce9aff..e2bb544 100644
--- a/sys/kern/kern_condvar.c
+++ b/sys/kern/kern_condvar.c
@@ -82,7 +82,6 @@
#endif
static void cv_timedwait_end(void *arg);
-static void cv_check_upcall(struct thread *td);
/*
* Initialize a condition variable. Must be called before use.
@@ -112,11 +111,10 @@ cv_destroy(struct cv *cvp)
*/
/*
- * Decide if we need to queue an upcall.
- * This is copied from msleep(), perhaps this should be a common function.
+ * Switch context.
*/
-static void
-cv_check_upcall(struct thread *td)
+static __inline void
+cv_switch(struct thread *td)
{
/*
@@ -127,8 +125,7 @@ cv_check_upcall(struct thread *td)
* the thread (recursion here might be bad).
* Hence the TDF_INMSLEEP flag.
*/
- if ((td->td_proc->p_flag & P_KSES) && td->td_mailbox &&
- (td->td_flags & TDF_INMSLEEP) == 0) {
+ if ((td->td_flags & (TDF_UNBOUND|TDF_INMSLEEP)) == TDF_UNBOUND) {
/*
* We don't need to upcall now, just queue it.
* The upcall will happen when other n-kernel work
@@ -139,16 +136,6 @@ cv_check_upcall(struct thread *td)
thread_schedule_upcall(td, td->td_kse);
td->td_flags &= ~TDF_INMSLEEP;
}
-}
-
-/*
- * Switch context.
- */
-static __inline void
-cv_switch(struct thread *td)
-{
-
- cv_check_upcall(td);
TD_SET_SLEEPING(td);
td->td_proc->p_stats->p_ru.ru_nvcsw++;
mi_switch();
OpenPOWER on IntegriCloud