From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7868) id 62E993858010; Mon, 9 May 2022 11:34:16 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 62E993858010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Takashi Yano To: cygwin-cvs@sourceware.org Subject: [newlib-cygwin/cygwin-3_3-branch] Cygwin: pty: Avoid script command crash in console. X-Act-Checkin: newlib-cygwin X-Git-Author: Takashi Yano X-Git-Refname: refs/heads/cygwin-3_3-branch X-Git-Oldrev: fbe34bd7642638c2cc11acc41ca2b43f1c56ce16 X-Git-Newrev: 65879410256b5f477ff56b0fdab7007fdfe0ec7f Message-Id: <20220509113416.62E993858010@sourceware.org> Date: Mon, 9 May 2022 11:34:16 +0000 (GMT) X-BeenThere: cygwin-cvs@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin core component git logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 May 2022 11:34:16 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3D65879410256= b5f477ff56b0fdab7007fdfe0ec7f commit 65879410256b5f477ff56b0fdab7007fdfe0ec7f Author: Takashi Yano Date: Mon May 9 20:18:07 2022 +0900 Cygwin: pty: Avoid script command crash in console. =20 - 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. Diff: --- winsup/cygwin/fhandler_termios.cc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/winsup/cygwin/fhandler_termios.cc b/winsup/cygwin/fhandler_ter= mios.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, fhan= dler_termios *fh) { FreeConsole (); AttachConsole (p->dwProcessId); - init_console_handler (::cygheap->ctty - && ::cygheap->ctty->is_console ()); + init_console_handler (false); } if (fh && p =3D=3D myself && being_debugged ()) { /* Avoid deadlock in gdb on console. */ @@ -400,8 +399,7 @@ fhandler_termios::process_sigs (char c, tty* ttyp, fhan= dler_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 =3D true;