Commit 9931b2f4 authored by Paolo Bonzini's avatar Paolo Bonzini Committed by Blue Swirl
Browse files

unlock iothread during WaitForMultipleObjects

parent 913895ab
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -140,7 +140,9 @@ void os_host_main_loop_wait(int *timeout)
        int err;
        WaitObjects *w = &wait_objects;

        qemu_mutex_unlock_iothread();
        ret = WaitForMultipleObjects(w->num, w->events, FALSE, *timeout);
        qemu_mutex_lock_iothread();
        if (WAIT_OBJECT_0 + 0 <= ret && ret <= WAIT_OBJECT_0 + w->num - 1) {
            if (w->func[ret - WAIT_OBJECT_0])
                w->func[ret - WAIT_OBJECT_0](w->opaque[ret - WAIT_OBJECT_0]);