]> sourceware.org Git - newlib-cygwin.git/commitdiff
Cygwin: pty: Fix Ctrl-C handling for non-cygwin apps in background.
authorTakashi Yano <takashi.yano@nifty.ne.jp>
Sun, 12 Dec 2021 12:20:47 +0000 (21:20 +0900)
committerTakashi Yano <takashi.yano@nifty.ne.jp>
Sun, 12 Dec 2021 12:46:24 +0000 (21:46 +0900)
- 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.

winsup/cygwin/fhandler_tty.cc

index 4f135839df250b728fe9a7bc3a62ef7543d6d132..37e27f34a83fd131ab40e8eb1ed6c3c533cedb78 100644 (file)
@@ -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);
This page took 0.034724 seconds and 5 git commands to generate.