From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7868) id 41B5E3857C76; Sun, 12 Dec 2021 13:09:04 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 41B5E3857C76 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Takashi Yano To: cygwin-cvs@sourceware.org Subject: [newlib-cygwin] Cygwin: pty: Fix Ctrl-C handling for non-cygwin apps in background. X-Act-Checkin: newlib-cygwin X-Git-Author: Takashi Yano X-Git-Refname: refs/heads/master X-Git-Oldrev: acc44e09d1d06ae8fdf96ea8d7272de10dd6007b X-Git-Newrev: e91ea41ef1be3d3e52c451c7bd691e0c2b7de910 Message-Id: <20211212130904.41B5E3857C76@sourceware.org> Date: Sun, 12 Dec 2021 13:09:04 +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: Sun, 12 Dec 2021 13:09:04 -0000 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=e91ea41ef1be3d3e52c451c7bd691e0c2b7de910 commit e91ea41ef1be3d3e52c451c7bd691e0c2b7de910 Author: Takashi Yano Date: Sun Dec 12 21:20:47 2021 +0900 Cygwin: pty: Fix Ctrl-C handling for non-cygwin apps in background. - With pseudo console enabled, if the non-cygwin app is started in the background and put it into the foreground, the process cannot be stopped by Ctrl-C. This patch fixes the issue. Diff: --- winsup/cygwin/fhandler_tty.cc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc index 4f135839d..37e27f34a 100644 --- a/winsup/cygwin/fhandler_tty.cc +++ b/winsup/cygwin/fhandler_tty.cc @@ -2249,9 +2249,12 @@ fhandler_pty_master::write (const void *ptr, size_t len) &mbp); } - if ((ti.c_lflag & ISIG) && !(ti.c_lflag & NOFLSH) - && memchr (buf, '\003', nlen)) - get_ttyp ()->discard_input = true; + if ((ti.c_lflag & ISIG) && memchr (buf, '\003', nlen)) + { + get_ttyp ()->kill_pgrp (SIGINT); + if (!(ti.c_lflag & NOFLSH)) + get_ttyp ()->discard_input = true; + } DWORD n; WriteFile (to_slave_nat, buf, nlen, &n, NULL); ReleaseMutex (input_mutex);