summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_synch.c
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2013-03-18 17:23:58 +0000
committerjhb <jhb@FreeBSD.org>2013-03-18 17:23:58 +0000
commit8b099870ed9610eb7624539e21eda50303937968 (patch)
treebc3da40472cd5518cd47bfef78827d9214361be6 /sys/kern/kern_synch.c
parent5f339017dc07b801ac6a4adcf667eb4fdcb0d408 (diff)
downloadFreeBSD-src-8b099870ed9610eb7624539e21eda50303937968.zip
FreeBSD-src-8b099870ed9610eb7624539e21eda50303937968.tar.gz
Partially revert r195702. Deferring stops is now implemented via a set of
calls to toggle TDF_SBDRY rather than passing PBDRY to individual sleep calls. - Remove the stop_allowed parameters from cursig() and issignal(). issignal() checks TDF_SBDRY directly. - Remove the PBDRY and SLEEPQ_STOP_ON_BDRY flags.
Diffstat (limited to 'sys/kern/kern_synch.c')
-rw-r--r--sys/kern/kern_synch.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/kern/kern_synch.c b/sys/kern/kern_synch.c
index 81471ca..33d2db5 100644
--- a/sys/kern/kern_synch.c
+++ b/sys/kern/kern_synch.c
@@ -205,8 +205,6 @@ _sleep(void *ident, struct lock_object *lock, int priority,
sleepq_flags = SLEEPQ_SLEEP;
if (catch)
sleepq_flags |= SLEEPQ_INTERRUPTIBLE;
- if (priority & PBDRY)
- sleepq_flags |= SLEEPQ_STOP_ON_BDRY;
sleepq_lock(ident);
CTR5(KTR_PROC, "sleep: thread %ld (pid %ld, %s) on %s (%p)",
OpenPOWER on IntegriCloud