From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7868) id 49189385781D; Sun, 12 Dec 2021 13:09:09 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 49189385781D 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 console mode of non-cygwin apps in background. X-Act-Checkin: newlib-cygwin X-Git-Author: Takashi Yano X-Git-Refname: refs/heads/master X-Git-Oldrev: e91ea41ef1be3d3e52c451c7bd691e0c2b7de910 X-Git-Newrev: d593c3e17ea1c614ddf37ff61e6d382d81a343d7 Message-Id: <20211212130909.49189385781D@sourceware.org> Date: Sun, 12 Dec 2021 13:09:09 +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:09 -0000 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=d593c3e17ea1c614ddf37ff61e6d382d81a343d7 commit d593c3e17ea1c614ddf37ff61e6d382d81a343d7 Author: Takashi Yano Date: Sun Dec 12 21:24:15 2021 +0900 Cygwin: pty: Fix console mode of non-cygwin apps in background. - If the non-cygwin app is started in the background in pseudo console, the console mode is broken for the app. This patch fixes the issue. Diff: --- winsup/cygwin/fhandler_tty.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc index 37e27f34a..7b18a15e7 100644 --- a/winsup/cygwin/fhandler_tty.cc +++ b/winsup/cygwin/fhandler_tty.cc @@ -3384,7 +3384,7 @@ skip_create: if (get_ttyp ()->previous_output_code_page) SetConsoleOutputCP (get_ttyp ()->previous_output_code_page); - do + if (get_ttyp ()->getpgid () == myself->pgid) { termios &t = get_ttyp ()->ti; DWORD mode; @@ -3409,7 +3409,6 @@ skip_create: mode |= DISABLE_NEWLINE_AUTO_RETURN; SetConsoleMode (hpConOut, mode); } - while (false); return true;