Previously, the pty master sends inputs to the pipe for cygwin app
even when pseudo console is activated if stdin is not the pty.
This causes the problem that key input is not sent to non cygwin
app even if the app opens CONIN$. This patch sets switch_to_nat_pipe
to true regardless whether stdin is the pty or not to allow that case.
https://cygwin.com/pipermail/cygwin/2023-April/253424.html
Reported-by: Wladislav Artsimovich <cygwin@frost.kiwi>
Signed-off-by: Takashi Yano <takashi.yano@nifty.ne.jp>
return false;
}
+ /* Set switch_to_nat_pipe regardless whether stdin is the pty or not
+ so that the non-cygwin app can work when it opens CONIN$. */
+ bool switch_to_nat_pipe_orig = get_ttyp ()->switch_to_nat_pipe;
+ get_ttyp ()->switch_to_nat_pipe = true;
+
HANDLE hpConIn, hpConOut;
if (get_ttyp ()->pcon_activated)
{ /* The pseudo console is already activated. */
CloseHandle (tmp);
}
fallback:
+ get_ttyp ()->switch_to_nat_pipe = switch_to_nat_pipe_orig;
return false;
}
- Align behaviour of dirname in terms of leading slashes to POSIX:
https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap04.html
+
+- Fix reading CONIN$ in non cygwin apps when stdin is not a pty.
+ Addresses https://cygwin.com/pipermail/cygwin/2023-April/253424.html