summaryrefslogtreecommitdiff
path: root/sys/kern/kern_synch.c
diff options
context:
space:
mode:
authorKip Macy <kmacy@FreeBSD.org>2006-12-16 06:54:09 +0000
committerKip Macy <kmacy@FreeBSD.org>2006-12-16 06:54:09 +0000
commit6cbb70e2cc773af300560cb188cdcb22f1651d40 (patch)
tree4517eb0f1d912f9b7fa16d26f25614aec2ce42a0 /sys/kern/kern_synch.c
parent8c3bc2c180e07f9c98295b69a96e4bb02cc48eab (diff)
Notes
Diffstat (limited to 'sys/kern/kern_synch.c')
-rw-r--r--sys/kern/kern_synch.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/kern_synch.c b/sys/kern/kern_synch.c
index 818d7e31519e..27fd8357dcf6 100644
--- a/sys/kern/kern_synch.c
+++ b/sys/kern/kern_synch.c
@@ -189,7 +189,7 @@ msleep(ident, mtx, priority, wmesg, timo)
* return from cursig().
*/
sleepq_add(ident, ident == &lbolt ? NULL : &mtx->mtx_object, wmesg,
- flags);
+ flags, 0);
if (timo)
sleepq_set_timeout(ident, timo);
@@ -267,7 +267,7 @@ msleep_spin(ident, mtx, wmesg, timo)
/*
* We put ourselves on the sleep queue and start our timeout.
*/
- sleepq_add(ident, &mtx->mtx_object, wmesg, SLEEPQ_MSLEEP);
+ sleepq_add(ident, &mtx->mtx_object, wmesg, SLEEPQ_MSLEEP, 0);
if (timo)
sleepq_set_timeout(ident, timo);
@@ -316,7 +316,7 @@ wakeup(ident)
{
sleepq_lock(ident);
- sleepq_broadcast(ident, SLEEPQ_MSLEEP, -1);
+ sleepq_broadcast(ident, SLEEPQ_MSLEEP, -1, 0);
}
/*
@@ -330,7 +330,7 @@ wakeup_one(ident)
{
sleepq_lock(ident);
- sleepq_signal(ident, SLEEPQ_MSLEEP, -1);
+ sleepq_signal(ident, SLEEPQ_MSLEEP, -1, 0);
}
/*