mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-21 00:07:36 +08:00
Cygwin: console: Correct the past fix for apps which open pty.
- The commit "Cygwin: console: Fix issues of apps which open pty." did not fix the second problem correctly. That commit looked to fix the issue, but the actual problem was that ctrl_c_handler() should be reregistered *AFTER* FreeConsole()/AttachConsole(). This patch correct that.
This commit is contained in:
parent
696a713bf2
commit
d857df6f08
@ -344,10 +344,10 @@ fhandler_termios::process_sigs (char c, tty* ttyp, fhandler_termios *fh)
|
||||
(myself->dwProcessId, false);
|
||||
if (resume_pid && fh && !fh->is_console ())
|
||||
{
|
||||
if (::cygheap->ctty && ::cygheap->ctty->is_console ())
|
||||
init_console_handler (false);
|
||||
FreeConsole ();
|
||||
AttachConsole (p->dwProcessId);
|
||||
if (::cygheap->ctty && ::cygheap->ctty->is_console ())
|
||||
init_console_handler (true);
|
||||
}
|
||||
if (fh && p == myself && being_debugged ())
|
||||
{ /* Avoid deadlock in gdb on console. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user