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-02-27 06:33:08 +0300
committerTakashi Yano <takashi.yano@nifty.ne.jp>2022-02-27 06:46:50 +0300
commitfc2dacb94ab460cfa90492ba9e1410b13d9c6bfc (patch)
tree069c58831c15711dadbcc283eb9f5a3783d40dfe
parentf6ef457ad212690f16e4ff9bc378944500463d4c (diff)
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.
-rw-r--r--winsup/cygwin/fhandler_termios.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler_termios.cc b/winsup/cygwin/fhandler_termios.cc
index 568523390..767b28302 100644
--- a/winsup/cygwin/fhandler_termios.cc
+++ b/winsup/cygwin/fhandler_termios.cc
@@ -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. */