Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--winsup/cygwin/fhandler_termios.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/winsup/cygwin/fhandler_termios.cc b/winsup/cygwin/fhandler_termios.cc
index 737bbea49..8dd38053c 100644
--- a/winsup/cygwin/fhandler_termios.cc
+++ b/winsup/cygwin/fhandler_termios.cc
@@ -368,8 +368,7 @@ fhandler_termios::process_sigs (char c, tty* ttyp, fhandler_termios *fh)
{
FreeConsole ();
AttachConsole (p->dwProcessId);
- init_console_handler (::cygheap->ctty
- && ::cygheap->ctty->is_console ());
+ init_console_handler (false);
}
if (fh && p == myself && being_debugged ())
{ /* Avoid deadlock in gdb on console. */
@@ -400,8 +399,7 @@ fhandler_termios::process_sigs (char c, tty* ttyp, fhandler_termios *fh)
FreeConsole ();
if (resume_pid && console_exists)
AttachConsole (resume_pid);
- init_console_handler (::cygheap->ctty
- && ::cygheap->ctty->is_console ());
+ init_console_handler (false);
}
release_attach_mutex ();
need_discard_input = true;