diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 1995-01-05 00:01:07 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 1995-01-05 00:01:07 +0000 |
| commit | 33c38bd57424b5403e3c312a6c1f0bcc2e6c5c2b (patch) | |
| tree | d4ff4b85e6fc8d40944cd83ff263766475a7abae /sys/dev/sio | |
| parent | b77430dcb01156da692f60983016a1b9a20d501c (diff) | |
Notes
Diffstat (limited to 'sys/dev/sio')
| -rw-r--r-- | sys/dev/sio/sio.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c index bb30c4290fc44..638ef70fd9342 100644 --- a/sys/dev/sio/sio.c +++ b/sys/dev/sio/sio.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)com.c 7.5 (Berkeley) 5/16/91 - * $Id: sio.c,v 1.61 1994/12/01 23:48:09 ache Exp $ + * $Id: sio.c,v 1.62 1994/12/27 13:07:07 bde Exp $ */ #include "sio.h" @@ -901,7 +901,6 @@ sioclose(dev, flag, mode, p) int mynor; int s; struct tty *tp; - void endtsleep __P((void *)); mynor = minor(dev); if (mynor & CONTROL_MASK) @@ -909,9 +908,7 @@ sioclose(dev, flag, mode, p) com = com_addr(MINOR_TO_UNIT(mynor)); tp = com->tp; s = spltty(); - timeout(endtsleep, (void *)p, 60 * hz); (*linesw[tp->t_line].l_close)(tp, flag); - untimeout(endtsleep, (void *)p); siostop(tp, FREAD | FWRITE); comhardclose(com); ttyclose(tp); |
