* pinfo.cc (pinfo::exit): Reset tty pgrp to zero if no more handles open.
(_pinfo::set_ctty): Remove debugging stuff.
This commit is contained in:
parent
50ed699a2a
commit
74882a259a
|
@ -1,3 +1,8 @@
|
||||||
|
2010-10-23 Christopher Faylor <me+cygwin@cgf.cx>
|
||||||
|
|
||||||
|
* pinfo.cc (pinfo::exit): Reset tty pgrp to zero if no more handles open.
|
||||||
|
(_pinfo::set_ctty): Remove debugging stuff.
|
||||||
|
|
||||||
2010-10-23 Christopher Faylor <me+cygwin@cgf.cx>
|
2010-10-23 Christopher Faylor <me+cygwin@cgf.cx>
|
||||||
|
|
||||||
* fhandler_tty.cc (fhandler_pty_master::open): Remove debugging printf.
|
* fhandler_tty.cc (fhandler_pty_master::open): Remove debugging printf.
|
||||||
|
|
|
@ -186,6 +186,12 @@ pinfo::exit (DWORD n)
|
||||||
}
|
}
|
||||||
|
|
||||||
sigproc_terminate (ES_FINAL);
|
sigproc_terminate (ES_FINAL);
|
||||||
|
if (myself->ctty >= 0 && myself->ctty != TTY_CONSOLE)
|
||||||
|
{
|
||||||
|
tty *t = cygwin_shared->tty[myself->ctty];
|
||||||
|
if (!t->slave_alive ())
|
||||||
|
t->setpgid (0);
|
||||||
|
}
|
||||||
|
|
||||||
/* FIXME: There is a potential race between an execed process and its
|
/* FIXME: There is a potential race between an execed process and its
|
||||||
parent here. I hated to add a mutex just for that, though. */
|
parent here. I hated to add a mutex just for that, though. */
|
||||||
|
@ -390,9 +396,7 @@ _pinfo::set_ctty (tty_min *tc, int flags, fhandler_tty_slave *arch)
|
||||||
else
|
else
|
||||||
sid = tc->getsid ();
|
sid = tc->getsid ();
|
||||||
if (tc->getpgid () == 0)
|
if (tc->getpgid () == 0)
|
||||||
{debug_printf ("setting pgid to %d", pgid);
|
|
||||||
tc->setpgid (pgid);
|
tc->setpgid (pgid);
|
||||||
}
|
|
||||||
if (cygheap->ctty != arch)
|
if (cygheap->ctty != arch)
|
||||||
{
|
{
|
||||||
debug_printf ("cygheap->ctty %p, arch %p", cygheap->ctty, arch);
|
debug_printf ("cygheap->ctty %p, arch %p", cygheap->ctty, arch);
|
||||||
|
|
Loading…
Reference in New Issue