[PATCH v3 3/3] winsup/doc/faq-api.xml(faq.api.timezone): explain time zone updates

2020-08-27 Thread Brian Inglis
based on material from t...@iana.org mailing list sources --- winsup/doc/faq-api.xml | 40 +++- 1 file changed, 35 insertions(+), 5 deletions(-) diff --git a/winsup/doc/faq-api.xml b/winsup/doc/faq-api.xml index 829e4d7febd8..6283fb663d77 100644 --- a/winsup/do

Re: [PATCH v2 3/3] winsup/doc/faq-api.xml(faq.api.timezone): explain time zone updates

2020-08-27 Thread Brian Inglis
On 2020-08-26 02:16, Corinna Vinschen wrote: > On Aug 25 06:57, Brian Inglis wrote: >> based on material from t...@iana.org mailing list sources >> --- >> winsup/doc/faq-api.xml | 29 + >> 1 file changed, 25 insertions(+), 4 deletions(-) >> >> diff --git a/winsup/doc/fa

Re: [PATCH] Cygwin: pty: Disable pseudo console if TERM is dumb or not set.

2020-08-27 Thread Corinna Vinschen
On Aug 27 13:07, Takashi Yano via Cygwin-patches wrote: > On Wed, 26 Aug 2020 19:36:06 +0200 > Corinna Vinschen wrote: > > On Aug 26 21:00, Takashi Yano via Cygwin-patches wrote: > > > Pseudo console generates escape sequences on execution of non-cygwin > > > apps. If the terminal does not support

Re: [PATCH 0/3] CI update

2020-08-27 Thread Corinna Vinschen
On Aug 26 22:04, Jon Turney wrote: > Since we recently had the unpleasant surprise of discovering that Cygwin > doesn't build on F32 when trying to make a release, this adds some CI to > test that. > > Open issues: Since there don't seem to be RedHat packages for cocom, this > grabs a cocom packag

Re: [PATCH] Cygwin: fhandler_fifo::delete_client_handler: improve efficiency

2020-08-27 Thread Corinna Vinschen
On Aug 26 22:03, Ken Brown via Cygwin-patches wrote: > Delete a client handler by swapping it with the last one in the list > instead of calling memmove. > --- > winsup/cygwin/fhandler_fifo.cc | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/winsup/cygwin/fhandler_fi

Re: [PATCH] Cygwin: console: Replace WriteConsoleA() with WriteConsoleW().

2020-08-27 Thread Corinna Vinschen
On Aug 27 12:35, Takashi Yano via Cygwin-patches wrote: > - To allow sending non-ASCII chars to console, all WriteConsoleA() > are replaced by WriteConsoleW(). > Addresses: > https://cygwin.com/pipermail/cygwin-patches/2020q3/010476.html > --- > winsup/cygwin/fhandler_console.cc | 89 +++

Re: [PATCH v3 3/3] winsup/doc/faq-api.xml(faq.api.timezone): explain time zone updates

2020-08-27 Thread Corinna Vinschen
On Aug 27 01:17, Brian Inglis wrote: > based on material from t...@iana.org mailing list sources > --- > winsup/doc/faq-api.xml | 40 +++- > 1 file changed, 35 insertions(+), 5 deletions(-) Pushed. Thanks, Corinna

Re: [PATCH] Cygwin: pty: Disable pseudo console if TERM is dumb or not set.

2020-08-27 Thread Takashi Yano via Cygwin-patches
On Thu, 27 Aug 2020 10:47:56 +0200 Corinna Vinschen wrote: > On Aug 27 13:07, Takashi Yano via Cygwin-patches wrote: > > On Wed, 26 Aug 2020 19:36:06 +0200 > > Corinna Vinschen wrote: > > > On Aug 26 21:00, Takashi Yano via Cygwin-patches wrote: > > > > Pseudo console generates escape sequences on

Re: [PATCH] Cygwin: pty: Disable pseudo console if TERM is dumb or not set.

2020-08-27 Thread Corinna Vinschen
On Aug 27 17:59, Takashi Yano via Cygwin-patches wrote: > On Thu, 27 Aug 2020 10:47:56 +0200 > Corinna Vinschen wrote: > > On Aug 27 13:07, Takashi Yano via Cygwin-patches wrote: > > > On Wed, 26 Aug 2020 19:36:06 +0200 > > > Corinna Vinschen wrote: > > > > On Aug 26 21:00, Takashi Yano via Cygwin-

[PATCH] Cygwin: select: Fix a bug on closing pi->bye event.

2020-08-27 Thread Takashi Yano via Cygwin-patches
- Close event handle pi->bye only if it was created. Addresses: https://cygwin.com/pipermail/cygwin-developers/2020-August/011948.html --- winsup/cygwin/select.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/winsup/cygwin/select.cc b/winsup/cygwin/select.cc index 9

Re: [PATCH 0/3] CI update

2020-08-27 Thread Brian Inglis
On 2020-08-27 02:49, Corinna Vinschen wrote: > On Aug 26 22:04, Jon Turney wrote: >> Since we recently had the unpleasant surprise of discovering that Cygwin >> doesn't build on F32 when trying to make a release, this adds some CI to >> test that. >> >> Open issues: Since there don't seem to be Red

[PATCH] Cygwin: sigproc.cc: fix typo in comment describing nprocs

2020-08-27 Thread Ken Brown via Cygwin-patches
nprocs is the number of children, not the number of deceased children. The incorrect comment used to apply to a variable nzombies. The latter was removed in commit 8cb359d9 in 2004, but the comment was never updated. --- winsup/cygwin/sigproc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(