]> git.proxmox.com Git - qemu.git/commit - main-loop.c
main-loop: interrupt wait when data arrives on a socket
authorPaolo Bonzini <pbonzini@redhat.com>
Tue, 20 Mar 2012 09:49:19 +0000 (10:49 +0100)
committerBlue Swirl <blauwirbel@gmail.com>
Sat, 7 Apr 2012 08:34:16 +0000 (08:34 +0000)
commitd3385eb448e38f828c78f8f68ec5d79c66a58b5d
tree86d8bd988391e96e5b0b835e0af7220a33819b50
parent15455536df5ef652759ccf465d5e6f73acb493df
main-loop: interrupt wait when data arrives on a socket

Right now, the main loop is not interrupted when data arrives on a
socket.  To fix this, register each socket to interrupt the main loop
with WSAEventSelect.  This does not replace select, it only communicates
a change in socket state that requires a select call.

Since the interrupt fires only once per recv call, or only once
after a send call returns EWOULDBLOCK we can activate it on all events
unconditionally.  If QEMU is momentarily uninterested on some condition,
the main loop will not busy wait.  Instead, it may get one extra wakeup,
but then it will ignore the condition until progress occurs and/or
qemu_set_fd_handler is called to set a callback.  At this point the
condition will be tested via select and the callback will be invoked
even if it is still disabled on the event.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
main-loop.c
main-loop.h
oslib-win32.c