diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1995-09-10 11:48:13 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1995-09-10 11:48:13 +0000 |
| commit | e7c89b42c51f05233d38ecf13ade3774e4c2ba16 (patch) | |
| tree | ebeae3f9f669b09112e5da93f76487e3f3ce68df /sys/kern/tty.c | |
| parent | 4590fd3a2a5539b8a1ce2ad488707123c8b7c8c8 (diff) | |
Notes
Diffstat (limited to 'sys/kern/tty.c')
| -rw-r--r-- | sys/kern/tty.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/kern/tty.c b/sys/kern/tty.c index e8c111d58d53..de2da4675132 100644 --- a/sys/kern/tty.c +++ b/sys/kern/tty.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)tty.c 8.8 (Berkeley) 1/21/94 - * $Id: tty.c,v 1.68 1995/08/01 23:38:00 ache Exp $ + * $Id: tty.c,v 1.69 1995/08/02 06:55:34 ache Exp $ */ /*- @@ -1000,7 +1000,8 @@ ttioctl(tp, cmd, data, flag) if (error) return (error); tp->t_timeout = *(int *)data * hz; - ttwwakeup(tp); + wakeup(TSA_OCOMPLETE(tp)); + wakeup(TSA_OLOWAT(tp)); break; case TIOCGDRAINWAIT: *(int *)data = tp->t_timeout / hz; |
