[PATCH] Cygwin: Fix __cpuset_zero_s prototype

2023-09-07 Thread Mark Geisert
Add a missing "void" to the prototype for __cpuset_zero_s(). Reported-by: Marco Mason Addresses: https://cygwin.com/pipermail/cygwin/2023-September/254423.html Signed-off-by: Mark Geisert Fixes: c6cfc99648d6 (Cygwin: sys/cpuset.h: add cpuset-specific external functions) ---

Re: [pkg cygwin-devel] /usr/include/sys/cpuset.h:52 error: missing return type

2023-09-07 Thread Mark Geisert via Cygwin
Hi Marco, Marco Mason via Cygwin wrote: I just updated to 3.4.9-1 and compiled some code, and it complained about cpuset.h. Specifically, "C++ requires a type specifier for all declarations", and sure enough, there's no return type on line 52. So I changed my local copy to the following, and

Re: bug report

2023-09-07 Thread Brian Inglis via Cygwin
On 2023-09-06 16:20, Asad Ali via Cygwin wrote: On Fri, Dec 30, 2022 at 5:46 AM Asad Ali wrote: I'm a penetration tester and bug bounty hunter. I have found a potential vulnerability in the site. Please review the report below. Is there any update on this ? I'm hoping to receive a reward for

Re: Fork errors

2023-09-07 Thread Mark Geisert via Cygwin
Bill Stewart via Cygwin wrote: On Wed, Sep 6, 2023 at 5:32 PM Mark Geisert wrote: Speculation: The specific exit code 0xC142 may or may not have something to do with Windows error 142, which is ERROR_BUSY_DRIVE. I cannot help further on this. Correction: The low word of 0xC142 = hex

Re: NFS mkfifo support in cygwin 3.5.0 Re: [ANNOUNCEMENT] cygwin 3.4.9-1

2023-09-07 Thread Cedric Blancher via Cygwin
On Thu, 7 Sept 2023 at 23:20, Martin Wege via Cygwin wrote: > > On Wed, Sep 6, 2023 at 5:27 PM Corinna Vinschen via Cygwin-announce > via Cygwin wrote: > > > > The following packages have been uploaded to the Cygwin distribution: > > > > * cygwin-3.4.9-1 > > * cygwin-devel-3.4.9-1 > > *

ARG_MAX missing from getconf

2023-09-07 Thread Matthew "mirage335" Hines via Cygwin
Really hope other Cygwin packages will not be broken because 'ARG_MAX' is now undefined in 'getconf' output. Caught this in a CI test for a rather large shell script. https://github.com/mirage335-colossus/ubiquitous_bash/blob/master/structure/installation.sh#L385 -- Problem reports:

Re: Ada support in gcc-core 11.4.0-1 package

2023-09-07 Thread Eliot Moss via Cygwin
On 9/7/2023 7:00 PM, Harry Rockefeller via Cygwin wrote: The message I get when trying to install gcc-ada 11.4.0-1 doesn't make sense. It says "installed package gcc-core obsoletes gcc-ada (of same version number) do not ask to install" When I run cygcheck on this package: with -c it says it is

Ada support in gcc-core 11.4.0-1 package

2023-09-07 Thread Harry Rockefeller via Cygwin
The message I get when trying to install gcc-ada 11.4.0-1 doesn't make sense. It says "installed package gcc-core obsoletes gcc-ada (of same version number) do not ask to install" When I run cygcheck on this package: with -c it says it is "OK"; with -l and pipe to grep it has zero matches of: Ada,

NFS mkfifo support in cygwin 3.5.0 Re: [ANNOUNCEMENT] cygwin 3.4.9-1

2023-09-07 Thread Martin Wege via Cygwin
On Wed, Sep 6, 2023 at 5:27 PM Corinna Vinschen via Cygwin-announce via Cygwin wrote: > > The following packages have been uploaded to the Cygwin distribution: > > * cygwin-3.4.9-1 > * cygwin-devel-3.4.9-1 > * cygwin-doc-3.4.9-1 > > Bug Fixes > - > > - Fix a bug introduced in cygwin 3.4.0

[pkg cygwin-devel] /usr/include/sys/cpuset.h:52 error: missing return type

2023-09-07 Thread Marco Mason via Cygwin
I just updated to 3.4.9-1 and compiled some code, and it complained about cpuset.h. Specifically, "C++ requires a type specifier for all declarations", and sure enough, there's no return type on line 52. So I changed my local copy to the following, and it cleared things up: #define

Re: Fork errors

2023-09-07 Thread Bill Stewart via Cygwin
On Wed, Sep 6, 2023 at 5:32 PM Mark Geisert wrote: Speculation: The specific exit code 0xC142 may or may not have > something to do > with Windows error 142, which is ERROR_BUSY_DRIVE. I cannot help further > on this. > Correction: The low word of 0xC142 = hex 142 = decimal 322 =

[PATCH] Cygwin: dsp: Improve response time of select()/poll().

2023-09-07 Thread Takashi Yano
With this patch, the response time of select()/poll() has been improved by utilizing semaphore (select_sem) just like pipe and fifo. In addition, notification of exceptional conditions has been added. Fixes: 2c06014f12b0 ("Cygwin: dsp: Implement select()/poll().") Signed-off-by: Takashi Yano ---