diff options
-rw-r--r-- | sys/kern/kern_synch.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/sys/kern/kern_synch.c b/sys/kern/kern_synch.c index 9fa44bd..71d78a0 100644 --- a/sys/kern/kern_synch.c +++ b/sys/kern/kern_synch.c @@ -171,13 +171,6 @@ msleep(ident, mtx, priority, wmesg, timo) sq = sleepq_lookup(ident); mtx_lock_spin(&sched_lock); - /* - * If we are capable of async syscalls and there isn't already - * another one ready to return, start a new thread - * and queue it as ready to run. Note that there is danger here - * because we need to make sure that we don't sleep allocating - * the thread (recursion here might be bad). - */ if (p->p_flag & P_SA || p->p_numthreads > 1) { /* * Just don't bother if we are exiting |