Re: [Qemu-devel] [PATCH 2/4] qemu-thread: implement joinable threads for POSIX

2011-12-06 Thread Jan Kiszka
On 2011-12-06 18:05, Paolo Bonzini wrote: > From: Jan Kiszka > > Allow to control if a QEMU thread is created joinable or not. Make it > not joinable by default to avoid that we keep the associated resources > around when terminating a thread without joining it (what we couldn't do > so far for o

[Qemu-devel] [PATCH 2/4] qemu-thread: implement joinable threads for POSIX

2011-12-06 Thread Paolo Bonzini
From: Jan Kiszka Allow to control if a QEMU thread is created joinable or not. Make it not joinable by default to avoid that we keep the associated resources around when terminating a thread without joining it (what we couldn't do so far for obvious reasons). The audio subsystem will need the jo