diff options
author | Egor Duda <deo@logos-m.ru> | 2001-03-19 18:27:37 +0000 |
---|---|---|
committer | Egor Duda <deo@logos-m.ru> | 2001-03-19 18:27:37 +0000 |
commit | 78ace8a7e5103099f20423acbc6d03c1b5d53fdd (patch) | |
tree | 4601ec6f506485c5701fa607919575a527ed1823 /winsup/cygwin/tty.h | |
parent | 98750a84047ec2ab23c3c74006e29319ce66e595 (diff) | |
download | cygnal-78ace8a7e5103099f20423acbc6d03c1b5d53fdd.tar.gz cygnal-78ace8a7e5103099f20423acbc6d03c1b5d53fdd.tar.bz2 cygnal-78ace8a7e5103099f20423acbc6d03c1b5d53fdd.zip |
* tty.h (tty::create_inuse): Add new parameter to allow non-
inheritable 'inuse' events.
* tty.cc (tty::create_inuse): Use new parameter.
* fhandler_tty.cc (fhandler_tty_master::init): Ditto.
* fhandler_tty.cc (fhandler_pty_master::open): Ditto.
* fhandler_tty.cc (fhandler_tty_master::init): Create master_alive
event.
* tty.cc (tty_list::terminate): Close master_alive event.
* fhandler_tty.cc (fhandler_tty_common::close): Send EOF to slaves
when master side is closed.
Diffstat (limited to 'winsup/cygwin/tty.h')
-rw-r--r-- | winsup/cygwin/tty.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/tty.h b/winsup/cygwin/tty.h index 43a82e0e4..6eb32b387 100644 --- a/winsup/cygwin/tty.h +++ b/winsup/cygwin/tty.h @@ -99,7 +99,7 @@ public: BOOL was_opened; /* True if opened at least once. */ void init (); - HANDLE create_inuse (const char *); + HANDLE create_inuse (const char *, BOOL); BOOL common_init (fhandler_pty_master *); BOOL alive (const char *fmt); BOOL slave_alive (); |