diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2000-07-19 13:46:21 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2000-07-19 13:46:21 +0000 |
commit | e1b6b5999728e1ff4fb10a183de21b5512949900 (patch) | |
tree | 454842ac47d8d64950ba879cdf5b0c56d410371f /sys/arch/i386 | |
parent | 3d2e4b22783d20745cb1f088f0e5312d2acf067f (diff) |
Use t_rstrt_to for ttrstrt timeout.
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/isa/pccons.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/isa/pccons.c b/sys/arch/i386/isa/pccons.c index 59e9636d4b8..740e0b4287c 100644 --- a/sys/arch/i386/isa/pccons.c +++ b/sys/arch/i386/isa/pccons.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pccons.c,v 1.43 2000/03/23 17:17:33 aaron Exp $ */ +/* $OpenBSD: pccons.c,v 1.44 2000/07/19 13:46:20 art Exp $ */ /* $NetBSD: pccons.c,v 1.99.4.1 1996/06/04 20:03:53 cgd Exp $ */ /*- @@ -768,7 +768,7 @@ pcstart(tp) tp->t_state &= ~TS_BUSY; if (cl->c_cc) { tp->t_state |= TS_TIMEOUT; - timeout(ttrstrt, tp, 1); + timeout_add(&tp->t_rstrt_to, 1); } if (cl->c_cc <= tp->t_lowat) { if (tp->t_state & TS_ASLEEP) { |