diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-11-05 04:49:17 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-11-05 04:49:17 +0000 |
commit | cf8ed42b7875619ae8f46578b5ffb08e5974eb46 (patch) | |
tree | 4396c56349a0d72984be61493b9d0384d35451eb /sys/kern | |
parent | cb96a9cf782cdc97c638c5feb43954fe25bd0531 (diff) |
Add more cases that should generate SIGTTOU
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/tty.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/kern/tty.c b/sys/kern/tty.c index 090c5316f09..1838115eecb 100644 --- a/sys/kern/tty.c +++ b/sys/kern/tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty.c,v 1.14 1996/11/05 04:42:30 tholo Exp $ */ +/* $OpenBSD: tty.c,v 1.15 1996/11/05 04:49:16 tholo Exp $ */ /* $NetBSD: tty.c,v 1.68.4.2 1996/06/06 16:04:52 thorpej Exp $ */ /*- @@ -642,6 +642,9 @@ ttioctl(tp, cmd, data, flag, p) /* If the ioctl involves modification, hang if in the background. */ switch (cmd) { case TIOCFLUSH: + case TIOCDRAIN: + case TIOCSBRK: + case TIOCCBRK: case TIOCSETA: case TIOCSETD: case TIOCSETAF: |