Re: possible snprintf() regression in 3.3.2

2021-11-18 Thread Sam Edge via Cygwin
On 18/11/2021 14:27, Corinna Vinschen via Cygwin wrote: On Nov 18 16:11, Noel Grandin via Cygwin wrote: On 2021/11/18 3:19 pm, Corinna Vinschen via Cygwin wrote: My patch raised NDEC from 43 to 1023 to allow aproximately the same number of digits as glibc. Newlib strives to support embedded

Re: terminfo packaging glitch?

2021-11-18 Thread Brian Inglis
On 2021-11-18 09:47, Fergus Daly wrote: Sorry Brian: missed yours when replying to Andrey. Brian said: I can't find anything anywhere on my system or the web suggesting a source for that. Something you or some script did on your system? How did you find the links in your 2014 "Missing links"

Re: terminfo packaging glitch?

2021-11-18 Thread Andrey Repin via Cygwin
Greetings, Fergus Daly! > Does this: > $ ls /usr/share/terminfo/terminfo > lrwxrwxrwx /usr/share/terminfo/terminfo -> /usr/share/terminfo/ > serve a purpose, or supply a workaround .. or .. is it a packaging glitch? > (Only in Cygwin64, not Cygwin32.) $ ls -ld /usr/share/terminfo/terminfo ls:

Re: Cygwin 3.3.0 regression: "make" segmentation faults

2021-11-18 Thread Jon Turney
On 15/11/2021 16:47, Aleksey Shipilev via Cygwin wrote: [...] After installing make-devel and doing "ulimit -c unlimited", I have got this stackdump: For no particularly good reason, writing a core dump is not hooked up to the core file size limit. Exception: STATUS_ACCESS_VIOLATION at

Re: possible snprintf() regression in 3.3.2

2021-11-18 Thread Corinna Vinschen via Cygwin
On Nov 18 16:11, Noel Grandin via Cygwin wrote: > > > On 2021/11/18 3:19 pm, Corinna Vinschen via Cygwin wrote: > > My patch raised NDEC from 43 to 1023 to allow aproximately the same > > number of digits as glibc. Newlib strives to support embedded targets > > and bare metal. Some of them are

Re: possible snprintf() regression in 3.3.2

2021-11-18 Thread Noel Grandin via Cygwin
On 2021/11/18 3:19 pm, Corinna Vinschen via Cygwin wrote: My patch raised NDEC from 43 to 1023 to allow aproximately the same number of digits as glibc. Newlib strives to support embedded targets and bare metal. Some of them are lucky if they have a stack size of 1K. The outbuf buffer is

Re: terminfo packaging glitch?

2021-11-18 Thread Brian Inglis
On 2021-11-18 00:53, Fergus Daly via Cygwin wrote: Does this: $ ls /usr/share/terminfo/terminfo lrwxrwxrwx /usr/share/terminfo/terminfo -> /usr/share/terminfo/ serve a purpose, or supply a workaround .. or .. is it a packaging glitch? (Only in Cygwin64, not Cygwin32.) Do you have the current

Re: possible snprintf() regression in 3.3.2

2021-11-18 Thread Corinna Vinschen via Cygwin
On Nov 18 20:35, Takashi Yano via Cygwin wrote: > On Thu, 18 Nov 2021 11:06:49 +1100 > Tony Cook wrote: > > On Wed, Nov 17, 2021 at 01:27:55PM +0100, Corinna Vinschen via Cygwin wrote: > > > I don't have a good solution. The old ldtoa code is lacking, for > > > switching newlib to gdtoa I simply

Re: possible snprintf() regression in 3.3.2

2021-11-18 Thread Takashi Yano via Cygwin
On Thu, 18 Nov 2021 11:06:49 +1100 Tony Cook wrote: > On Wed, Nov 17, 2021 at 01:27:55PM +0100, Corinna Vinschen via Cygwin wrote: > > I don't have a good solution. The old ldtoa code is lacking, for > > switching newlib to gdtoa I simply don't have the time. On the newlib > > list was a short

[PATCH] Cygwin: console: Fix interference issue regarding master thread.

2021-11-18 Thread Takashi Yano
- This patch fixes the issue that ReadConsoleInputW() call in the master thread interferes with the input process of non-cygwin apps. --- winsup/cygwin/fhandler.h | 1 + winsup/cygwin/fhandler_console.cc | 11 +++ 2 files changed, 12 insertions(+) diff --git