summaryrefslogtreecommitdiff
path: root/sys/kern/kern_synch.c
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2000-03-23 14:44:38 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2000-03-23 14:44:38 +0000
commit7f33fa94053613b276a8dd8cbc850276ac321210 (patch)
tree24e95dd4c07090b16fd00dadfb074382f5f6855f /sys/kern/kern_synch.c
parentc49ee4f972f214155dae087642d78628e05ccd73 (diff)
use the new timeout interface for tsleep.
Diffstat (limited to 'sys/kern/kern_synch.c')
-rw-r--r--sys/kern/kern_synch.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/sys/kern/kern_synch.c b/sys/kern/kern_synch.c
index f419350c8f7..ebb7199d205 100644
--- a/sys/kern/kern_synch.c
+++ b/sys/kern/kern_synch.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kern_synch.c,v 1.21 2000/03/23 10:13:58 art Exp $ */
+/* $OpenBSD: kern_synch.c,v 1.22 2000/03/23 14:44:37 art Exp $ */
/* $NetBSD: kern_synch.c,v 1.37 1996/04/22 01:38:37 christos Exp $ */
/*-
@@ -378,8 +378,10 @@ tsleep(ident, priority, wmesg, timo)
else
*qp->sq_tailp = p;
*(qp->sq_tailp = &p->p_forw) = 0;
- if (timo)
- timeout(endtsleep, (void *)p, timo);
+ if (timo) {
+ timeout_set(&p->p_sleep_to, endtsleep, p);
+ timeout_add(&p->p_sleep_to, timo);
+ }
/*
* We put ourselves on the sleep queue and start our timeout
* before calling CURSIG, as we could stop there, and a wakeup
@@ -424,7 +426,7 @@ resume:
return (EWOULDBLOCK);
}
} else if (timo)
- untimeout(endtsleep, (void *)p);
+ timeout_del(&p->p_sleep_to);
if (catch && (sig != 0 || (sig = CURSIG(p)) != 0)) {
#ifdef KTRACE
if (KTRPOINT(p, KTR_CSW))
@@ -451,7 +453,7 @@ void
endtsleep(arg)
void *arg;
{
- register struct proc *p;
+ struct proc *p;
int s;
p = (struct proc *)arg;