On Thu, May 09, 2019 at 11:01:13PM -0400, Alexander Bluhm wrote:
> When killing a process, the signal is handled by any thread that
> does not block the signal. If all threads block the signal, we
> currently deliver it to the main thread. This does not conform to
> POSIX. If any thread unblocks
Hi,
When killing a process, the signal is handled by any thread that
does not block the signal. If all threads block the signal, we
currently deliver it to the main thread. This does not conform to
POSIX. If any thread unblocks the signal, it should be delivered
immediately to this thread. We