diff options
author | Thomas Bushnell <thomas@gnu.org> | 1999-02-18 05:58:30 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1999-02-18 05:58:30 +0000 |
commit | db70e2203e2b3ad5bfc50b9945bce3a3913b00df (patch) | |
tree | 22e1d94068e910a45997639d11ba21f133b3dfaa /term | |
parent | a24136f9e68216ea83eff8a9ea8969430e47f288 (diff) |
Thu Feb 18 00:57:30 1999 Thomas Bushnell, BSG <tb@mit.edu>
* devio.c (devio_assert_dtr): Bother to set open_pending.
Reported by OKUJI Yoshinori (okuji@kuicr.kyoto-u.ac.jp).
Diffstat (limited to 'term')
-rw-r--r-- | term/ChangeLog | 5 | ||||
-rw-r--r-- | term/devio.c | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/term/ChangeLog b/term/ChangeLog index 381845ff..2cee50ea 100644 --- a/term/ChangeLog +++ b/term/ChangeLog @@ -1,3 +1,8 @@ +Thu Feb 18 00:57:30 1999 Thomas Bushnell, BSG <tb@mit.edu> + + * devio.c (devio_assert_dtr): Bother to set open_pending. + Reported by OKUJI Yoshinori (okuji@kuicr.kyoto-u.ac.jp). + 1999-02-16 Roland McGrath <roland@baalperazim.frob.com> * users.c (trivfs_S_io_revoke): Fix typos. diff --git a/term/devio.c b/term/devio.c index 6c5a9683..aeae5eaf 100644 --- a/term/devio.c +++ b/term/devio.c @@ -1,5 +1,5 @@ /* - Copyright (C) 1995, 1996, 1998 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1998, 1999 Free Software Foundation, Inc. Written by Michael I. Bushnell, p/BSG. This file is part of the GNU Hurd. @@ -441,6 +441,9 @@ devio_assert_dtr () ports_port_deref (phys_reply_pi); phys_reply_pi = 0; } + else + open_pending = 1; + return err; } |