]> git.proxmox.com Git - qemu.git/blobdiff - osdep.c
monitor: move include files to include/monitor/
[qemu.git] / osdep.c
diff --git a/osdep.c b/osdep.c
index c822a01c04d68928db795d5816dcb3bcddab3f3a..807e90cf973f630235d5c462d33e4e81cff08bb8 100644 (file)
--- a/osdep.c
+++ b/osdep.c
@@ -48,7 +48,7 @@ extern int madvise(caddr_t, size_t, int);
 #include "qemu-common.h"
 #include "trace.h"
 #include "qemu_socket.h"
-#include "monitor.h"
+#include "monitor/monitor.h"
 
 static bool fips_enabled = false;
 
@@ -134,6 +134,11 @@ fail:
     errno = serrno;
     return -1;
 }
+
+static int qemu_parse_fdset(const char *param)
+{
+    return qemu_parse_fd(param);
+}
 #endif
 
 /*
@@ -394,3 +399,4 @@ bool fips_get_state(void)
 {
     return fips_enabled;
 }
+