https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=ab8608f88f5484e18757cd1ce78c7394b7d0a3c8

commit ab8608f88f5484e18757cd1ce78c7394b7d0a3c8
Author: Takashi Yano <[email protected]>
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);

Reply via email to