PERFORCE change 146623 for review
Ed Schouten
ed at FreeBSD.org
Mon Aug 4 14:11:50 UTC 2008
http://perforce.freebsd.org/chv.cgi?CH=146623
Change 146623 by ed at ed_flippo on 2008/08/04 14:10:50
Don't enter the zombie state when the device isn't opened.
Affected files ...
.. //depot/projects/mpsafetty/sys/kern/tty_ttydisc.c#5 edit
Differences ...
==== //depot/projects/mpsafetty/sys/kern/tty_ttydisc.c#5 (text+ko) ====
@@ -559,8 +559,13 @@
if (open)
cv_broadcast(&tp->t_dcdwait);
- /* Ignore modem status lines */
- if (CMP_FLAG(c, CLOCAL))
+ /*
+ * Ignore modem status lines when CLOCAL is turned on, but don't
+ * enter the zombie state when the TTY isn't opened, because
+ * that would cause the TTY to be in zombie state after being
+ * opened.
+ */
+ if (!tty_opened(tp) || CMP_FLAG(c, CLOCAL))
return;
if (open == 0) {
More information about the p4-projects
mailing list