Re: [ANNOUNCEMENT] cygwin 3.1.0-0.5 (TEST)

2019-09-20 Thread Ken Brown
[Redirecting to cygwin-pathces.] On 9/18/2019 10:40 AM, Takashi Yano wrote: > Hi Ken, > > I have just posted seven patches against git head (cygwin 3.1.0-0.5). > > [PATCH] Cygwin: console: Revive Win7 compatibility. > [PATCH 1/5] Cygwin: pty: Avoid potential segfault in PTY code when ppid = 1.

Re: [PATCH v2 0/1] Cygwin: Fix incorrect TTY for non-cygwin process.

2019-09-20 Thread Ken Brown
On 9/19/2019 11:04 PM, Takashi Yano wrote: > - After commit d4045fdbef60d8e7e0d11dfe38b048ea2cb8708b, the TTY >displayed by ps command is incorrect if the process is non-cygwin >process. This patch fixes this issue. > > v2: > Simplify the condition to call proc_subproc (PROC_CLEARWAIT, 1)

Re: [PATCH v2 0/1] Cygwin: console: Make console input work in GDB and strace.

2019-09-20 Thread Ken Brown
On 9/20/2019 5:10 PM, Takashi Yano wrote: > - After commit 2232498c712acc97a38fdc297cbe53ba74d0ec2c, console >input cause error in GDB or strace. This patch fixes this issue. > > v2: > Patch pinfo.cc rather than fhandler_termios.cc. This probably is > the right thing. > > Takashi Yano (1): >

Re: [PATCH 0/5] Some fixes for PTY with pseudo console support (4)

2019-09-20 Thread Ken Brown
On 9/18/2019 10:29 AM, Takashi Yano wrote: > Takashi Yano (5): >Cygwin: pty: Avoid potential segfault in PTY code when ppid = 1. >Cygwin: pty: Make GDB work again on pty. >Cygwin: pty: Unify the charset conversion codes into a function. >Cygwin: pty: Add charset conversion for

[PATCH v2 1/1] Cygwin: console: Make console input work in GDB and strace.

2019-09-20 Thread Takashi Yano
- After commit 2232498c712acc97a38fdc297cbe53ba74d0ec2c, console input cause error in GDB or strace. This patch fixes this issue. --- winsup/cygwin/pinfo.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winsup/cygwin/pinfo.cc b/winsup/cygwin/pinfo.cc index

[PATCH v2 0/1] Cygwin: console: Make console input work in GDB and strace.

2019-09-20 Thread Takashi Yano
- After commit 2232498c712acc97a38fdc297cbe53ba74d0ec2c, console input cause error in GDB or strace. This patch fixes this issue. v2: Patch pinfo.cc rather than fhandler_termios.cc. This probably is the right thing. Takashi Yano (1): Cygwin: console: Make console input work in GDB and