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);