aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-08-06 11:38:42 +0100
committerKeir Fraser <keir.fraser@citrix.com>2008-08-06 11:38:42 +0100
commitec80656941f426651cf3013ac1a8e5dfb043ad47 (patch)
treee370e702120d827939e81977eb402aa463dc9e6f
parent203c11a813a6f95b9f808967da6846bcd31f0083 (diff)
downloadxen-ec80656941f426651cf3013ac1a8e5dfb043ad47.tar.gz
xen-ec80656941f426651cf3013ac1a8e5dfb043ad47.tar.bz2
xen-ec80656941f426651cf3013ac1a8e5dfb043ad47.zip
ioemu-stubdom: fix initialization of vm_change_state_head
That is actually a no-op since it just sets it to NULL again, but makes sense. Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
-rw-r--r--tools/ioemu/vl.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/ioemu/vl.c b/tools/ioemu/vl.c
index 129e0d4475..9d526057e4 100644
--- a/tools/ioemu/vl.c
+++ b/tools/ioemu/vl.c
@@ -7136,8 +7136,10 @@ int main(int argc, char **argv)
sigaddset(&set, aio_sig_num);
sigprocmask(SIG_BLOCK, &set, NULL);
}
+#endif
QEMU_LIST_INIT (&vm_change_state_head);
+#ifndef CONFIG_STUBDOM
#ifndef _WIN32
{
struct sigaction act;