Re: [PATCH v2 3/7] Cygwin: signal: Cleanup signal queue after processing it

2024-11-29 Thread Takashi Yano
On Wed, 27 Nov 2024 17:37:55 +0100 Corinna Vinschen wrote: > Hi Takashi, > > On Nov 26 17:55, Takashi Yano wrote: > > The queue is once cleaned up, however, sigpacket::process() may set > > si_signo in the queue to 0 by calling sig_clear(). This patch adds > > another loop for cleanup after callin

Re: [PATCH v2 3/7] Cygwin: signal: Cleanup signal queue after processing it

2024-11-27 Thread Corinna Vinschen
Hi Takashi, On Nov 26 17:55, Takashi Yano wrote: > The queue is once cleaned up, however, sigpacket::process() may set > si_signo in the queue to 0 by calling sig_clear(). This patch adds > another loop for cleanup after calling sigpacket::process(). > > Addresses: https://cygwin.com/pipermail/cy

[PATCH v2 3/7] Cygwin: signal: Cleanup signal queue after processing it

2024-11-26 Thread Takashi Yano
The queue is once cleaned up, however, sigpacket::process() may set si_signo in the queue to 0 by calling sig_clear(). This patch adds another loop for cleanup after calling sigpacket::process(). Addresses: https://cygwin.com/pipermail/cygwin/2024-November/256744.html Fixes: 9d2155089e87 ("(wait_s