Re: pthread signal delivery

2019-05-11 Thread Alexander Bluhm
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

pthread signal delivery

2019-05-09 Thread Alexander Bluhm
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