Re: [Qemu-devel] [PATCH v2] Fix signal handling when io-thread is disabled

2011-07-16 Thread Blue Swirl
Thanks, applied. On Sat, Jul 9, 2011 at 5:30 AM, Alexandre Raymond wrote: > ping? > > On Tue, Jun 14, 2011 at 12:47 PM, Jan Kiszka wrote: >> On 2011-06-14 16:05, Alexandre Raymond wrote: >>> Changes since v1: >>> - take pthread_sigmask() out of the ifdef as it is now common >>> to both parts. >>

Re: [Qemu-devel] [PATCH v2] Fix signal handling when io-thread is disabled

2011-07-08 Thread Alexandre Raymond
ping? On Tue, Jun 14, 2011 at 12:47 PM, Jan Kiszka wrote: > On 2011-06-14 16:05, Alexandre Raymond wrote: >> Changes since v1: >> - take pthread_sigmask() out of the ifdef as it is now common >> to both parts. >> >> This fix effectively blocks, in the main thread, the signals handled >> by signal

Re: [Qemu-devel] [PATCH v2] Fix signal handling when io-thread is disabled

2011-06-14 Thread Jan Kiszka
On 2011-06-14 16:05, Alexandre Raymond wrote: > Changes since v1: > - take pthread_sigmask() out of the ifdef as it is now common > to both parts. > > This fix effectively blocks, in the main thread, the signals handled > by signalfd or the compatibility signal thread. > > This way, such signals

[Qemu-devel] [PATCH v2] Fix signal handling when io-thread is disabled

2011-06-14 Thread Alexandre Raymond
Changes since v1: - take pthread_sigmask() out of the ifdef as it is now common to both parts. This fix effectively blocks, in the main thread, the signals handled by signalfd or the compatibility signal thread. This way, such signals are received synchronously in the main thread through sigfd_ha