diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1995-07-22 01:30:45 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1995-07-22 01:30:45 +0000 |
| commit | a16721a13ae540a2c63dd30d74316ab3ae3aa61b (patch) | |
| tree | c4afe09d343e52acfa2524ee2edbd4e49000cf11 /sys/gnu | |
| parent | 2ce42987d3ee48eeab510a217bfbdd94847bd649 (diff) | |
Notes
Diffstat (limited to 'sys/gnu')
| -rw-r--r-- | sys/gnu/isdn/iitty.c | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/sys/gnu/isdn/iitty.c b/sys/gnu/isdn/iitty.c index 63f19ad8682c..f5fc94820c38 100644 --- a/sys/gnu/isdn/iitty.c +++ b/sys/gnu/isdn/iitty.c @@ -1,6 +1,6 @@ -static char _ittyid[] = "@(#)$Id: iitty.c,v 1.6 1995/07/21 16:30:37 bde Exp $"; +static char _ittyid[] = "@(#)$Id: iitty.c,v 1.7 1995/07/21 20:52:21 bde Exp $"; /******************************************************************************* - * II - Version 0.1 $Revision: 1.6 $ $State: Exp $ + * II - Version 0.1 $Revision: 1.7 $ $State: Exp $ * * Copyright 1994 Dietmar Friede ******************************************************************************* @@ -10,6 +10,12 @@ static char _ittyid[] = "@(#)$Id: iitty.c,v 1.6 1995/07/21 16:30:37 bde Exp * ******************************************************************************* * $Log: iitty.c,v $ + * Revision 1.7 1995/07/21 20:52:21 bde + * Obtained from: partly from ancient patches by ache and me via 1.1.5 + * + * Nuke `symbolic sleep message strings'. Use unique literal messages so that + * `ps l' shows unambiguously where processes are sleeping. + * * Revision 1.6 1995/07/21 16:30:37 bde * Obtained from: partly from an ancient patch of mine via 1.1.5 * @@ -226,15 +232,7 @@ itystart(struct tty *tp) splx(s); return; } - if (tp->t_outq.c_cc <= tp->t_lowat) - { - if (tp->t_state & TS_ASLEEP) - { - tp->t_state &= ~TS_ASLEEP; - wakeup((caddr_t) & tp->t_outq); - } - selwakeup(&tp->t_wsel); - } + ttwwakeup(tp); if (tp->t_outq.c_cc) { if(OUTBOUND(tp->t_dev) && (tp->t_cflag & CLOCAL) && |
