Re: [Qemu-devel] [PATCH v2] qemu-thread: always keep the posix wrapper layer

2018-04-12 Thread Paolo Bonzini
On 12/04/2018 09:55, Fam Zheng wrote: > Reviewed-by: Fam Zheng Queued, thanks Fam and Peter. Paolo

Re: [Qemu-devel] [PATCH v2] qemu-thread: always keep the posix wrapper layer

2018-04-12 Thread Fam Zheng
On Thu, 04/12 13:34, Peter Xu wrote: > We will conditionally have a wrapper layer depending on whether the host > has the PTHREAD_SETNAME capability. It complicates stuff. Let's keep > the wrapper there; we opt out the pthread_setname_np() call only. > > Signed-off-by: Peter Xu > --- > v2: > -

[Qemu-devel] [PATCH v2] qemu-thread: always keep the posix wrapper layer

2018-04-11 Thread Peter Xu
We will conditionally have a wrapper layer depending on whether the host has the PTHREAD_SETNAME capability. It complicates stuff. Let's keep the wrapper there; we opt out the pthread_setname_np() call only. Signed-off-by: Peter Xu --- v2: - set thread name only conditionally [Eric] --- util/q