Re: [PATCH] Cygwin: Speed up mkimport

2020-12-16 Thread Jon Turney
On 26/11/2020 09:56, Mark Geisert wrote: Cut mkimport elapsed time in half by forking each iteration of the two time-consuming loops within. Only do this if more than one CPU is present. In the second loop, combine the two 'objdump' calls into one system() invocation to avoid a system()

[PATCH] Cygwin: pty: Check response for CSI6n more strictly.

2020-12-16 Thread Takashi Yano via Cygwin-patches
- Previous code to read response for CSI6n allows invalid response such as "CSI Pl; Pc H" other than correct response "CSI Pl; Pc R". With this patch, the response is checked more strictly. --- winsup/cygwin/fhandler_tty.cc | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff

[PATCH] Cygwin: pty: Revise the workaround for rlwrap.

2020-12-16 Thread Takashi Yano via Cygwin-patches
- Previous workaround has a problem that screen is distorted if up arrow key is pressed at the first line after running "rlwrap cmd". This patch fixes the issue. --- winsup/cygwin/fhandler_tty.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

[PATCH] fhandler_proc.cc(format_proc_cpuinfo): report Intel SGX bits

2020-12-16 Thread Brian Inglis
Update to Linux next 5.10 cpuinfo flags for Intel SDM 36.7.1 Software Guard Extensions, and 38.1.4 SGX Launch Control Configuration. Launch control restricts what software can run with enclave protections, which helps protect the system from bad enclaves. --- winsup/cygwin/fhandler_proc.cc | 2 ++

Re: [PATCH] Cygwin: pty: Check response for CSI6n more strictly.

2020-12-16 Thread Corinna Vinschen via Cygwin-patches
On Dec 16 18:10, Takashi Yano via Cygwin-patches wrote: > - Previous code to read response for CSI6n allows invalid response > such as "CSI Pl; Pc H" other than correct response "CSI Pl; Pc R". > With this patch, the response is checked more strictly. > --- > winsup/cygwin/fhandler_tty.cc | 8

Re: [PATCH] Cygwin: pty: Revise the workaround for rlwrap.

2020-12-16 Thread Corinna Vinschen via Cygwin-patches
On Dec 16 18:10, Takashi Yano via Cygwin-patches wrote: > - Previous workaround has a problem that screen is distorted if up > arrow key is pressed at the first line after running "rlwrap cmd". > This patch fixes the issue. > --- > winsup/cygwin/fhandler_tty.cc | 4 ++-- > 1 file changed, 2