]> Git Repo - qemu.git/blobdiff - iohandler.c
pc: acpi: SRAT: create only valid processor lapic entries
[qemu.git] / iohandler.c
index 55f85015241d517871bd4d2422a24aecec43484e..0abb4a7e7a5c4c298cdd686aba78094bbd3b98b4 100644 (file)
@@ -22,7 +22,7 @@
  * THE SOFTWARE.
  */
 
-#include "config-host.h"
+#include "qemu/osdep.h"
 #include "qemu-common.h"
 #include "qemu/queue.h"
 #include "block/aio.h"
@@ -55,7 +55,8 @@ void qemu_set_fd_handler(int fd,
                          void *opaque)
 {
     iohandler_init();
-    aio_set_fd_handler(iohandler_ctx, fd, fd_read, fd_write, opaque);
+    aio_set_fd_handler(iohandler_ctx, fd, false,
+                       fd_read, fd_write, opaque);
 }
 
 /* reaping of zombies.  right now we're not passing the status to
This page took 0.020645 seconds and 4 git commands to generate.