]> git.proxmox.com Git - mirror_qemu.git/blobdiff - os-posix.c
qdev-properties: add UUID property type
[mirror_qemu.git] / os-posix.c
index c6ddb7d830198929d2805d74b64336fae12def08..b9c2343b1ee72776a55896c6b0b188fe52ad965b 100644 (file)
@@ -25,7 +25,6 @@
 
 #include "qemu/osdep.h"
 #include <sys/wait.h>
-/*needed for MAP_POPULATE before including qemu-options.h */
 #include <pwd.h>
 #include <grp.h>
 #include <libgen.h>
@@ -34,7 +33,6 @@
 #include "sysemu/sysemu.h"
 #include "net/slirp.h"
 #include "qemu-options.h"
-#include "qemu/rcu.h"
 #include "qemu/error-report.h"
 #include "qemu/log.h"
 #include "qemu/cutils.h"
@@ -249,7 +247,6 @@ void os_daemonize(void)
         signal(SIGTSTP, SIG_IGN);
         signal(SIGTTOU, SIG_IGN);
         signal(SIGTTIN, SIG_IGN);
-        rcu_after_fork();
     }
 }