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

2011-12-06 Thread Paolo Bonzini
On 12/06/2011 06:39 PM, Jan Kiszka wrote: > diff --git a/roms/seabios b/roms/seabios > index 8e30147..cc97564 16 > --- a/roms/seabios > +++ b/roms/seabios > @@ -1 +1 @@ > -Subproject commit 8e301472e324b6d6496d8b4ffc66863e99d7a505 > +Subproject commit cc975646af69f279396d4d5e1379ac6af8

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

2011-12-06 Thread Jan Kiszka
On 2011-12-06 18:05, Paolo Bonzini wrote: > Rewrite the handshaking between qemu_thread_create and the > win32_start_routine, so that the thread can be joined without races. > Similar handshaking is done now between qemu_thread_exit and > qemu_thread_join. > > This also simplifies how QemuThreads

[Qemu-devel] [PATCH 3/4] qemu-thread: implement joinable threads for Win32

2011-12-06 Thread Paolo Bonzini
Rewrite the handshaking between qemu_thread_create and the win32_start_routine, so that the thread can be joined without races. Similar handshaking is done now between qemu_thread_exit and qemu_thread_join. This also simplifies how QemuThreads are initialized. Signed-off-by: Paolo Bonzini --- q