From 1df3fbe2db6c972b8e8bdc31b473718a39bf88fa Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Sat, 27 Dec 2003 01:59:29 +0000 Subject: * fhandler.h (fhandler_tty_master::fixup_after_fork): Remove declaration. (fhandler_tty_master::fixup_after_exec): Ditto. * fhandler_tty.cc (fhandler_tty_master::init): Fix so that children do not inherit master tty handles. (fhandler_tty_master::fixup_after_fork): Remove, since it was never used. (fhandler_tty_master::fixup_after_exec): Ditto. * pinfo.cc (_pinfo::set_ctty): Increment open_fhs when ctty is set. * cygheap.cc (cygheap_init): Ditto. * syscalls.cc (setsid): *Always* call close on opened ctty since the archetype is associated with the ctty and it counts as an opened handle. * tty.cc (tty::common_init): Don't protect input/output mutex since it confuses subsequent fork/execs when CYGWIN=tty. --- winsup/cygwin/cygheap.cc | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'winsup/cygwin/cygheap.cc') diff --git a/winsup/cygwin/cygheap.cc b/winsup/cygwin/cygheap.cc index 6859e4335..16a95f441 100644 --- a/winsup/cygwin/cygheap.cc +++ b/winsup/cygwin/cygheap.cc @@ -212,6 +212,13 @@ cygheap_init () && (set_process_privilege (SE_CREATE_GLOBAL_NAME, true) >= 0 || GetLastError () == ERROR_NO_SUCH_PRIVILEGE) ? "Global\\" : ""); + if (cygheap->ctty) + { + fhandler_console::open_fhs++; + debug_printf ("tty%d, open_fhs %d, arch usecount %d", + cygheap->ctty->get_ttyp ()->ntty, + fhandler_console::open_fhs, cygheap->ctty->usecount); + } } /* Copyright (C) 1997, 2000 DJ Delorie */ -- cgit v1.2.3