PERFORCE change 146772 for review
Ed Schouten
ed at FreeBSD.org
Wed Aug 6 13:25:25 UTC 2008
http://perforce.freebsd.org/chv.cgi?CH=146772
Change 146772 by ed at ed_dull on 2008/08/06 13:24:38
Use the proper tty_gone() macro instead of looking for TF_GONE directly.
Affected files ...
.. //depot/projects/mpsafetty/sys/kern/tty.c#15 edit
Differences ...
==== //depot/projects/mpsafetty/sys/kern/tty.c#15 (text+ko) ====
@@ -973,7 +973,7 @@
void
tty_rel_gone(struct tty *tp)
{
- MPASS((tp->t_flags & TF_GONE) == 0);
+ MPASS(!tty_gone(tp));
/* Simulate carrier removal */
ttydisc_modem(tp, 0);
More information about the p4-projects
mailing list