mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-08 18:19:08 +08:00
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>
15 lines
561 B
Groff
15 lines
561 B
Groff
Bug Fixes
|
|
---------
|
|
|
|
- Fix CPU_SET(3) macro type mismatch by making the macros type-safe.
|
|
Addresses https://cygwin.com/pipermail/cygwin/2023-March/253220.html
|
|
|
|
- kill(1): don't print spurious error message.
|
|
Addresses: https://cygwin.com/pipermail/cygwin/2023-March/253291.html
|
|
|
|
- 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
|