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:
authorTakashi Yano <takashi.yano@nifty.ne.jp>2022-05-09 14:18:07 +0300
committerTakashi Yano <takashi.yano@nifty.ne.jp>2022-05-09 14:33:47 +0300
commit65879410256b5f477ff56b0fdab7007fdfe0ec7f (patch)
tree7827fa5fb46548cb1b9a12972004d9f67e4aacc0
parentfbe34bd7642638c2cc11acc41ca2b43f1c56ce16 (diff)
Cygwin: pty: Avoid script command crash in console.cygwin-3_3_5-release
- Previously, script command sometimes crashes by Ctrl-C in Win 7 if it is running in console, and non-cygwin app is foreground. This patch fixes the issue.
-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;