diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2010-04-12 17:19:06 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-04-12 17:19:06 +0000 |
commit | 7277e027bbbf708979c82c44714f9105bf8e62d7 (patch) | |
tree | d65a019fa9eefaa3058e7095ef0f2522119dced4 /vl.c | |
parent | 24f7fb19b397c22ddb1582d8e489727f1dc53bef (diff) |
Fix build when configured with --enable-io-thread
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 13 |
1 files changed, 2 insertions, 11 deletions
@@ -244,12 +244,6 @@ int kvm_allowed = 0; uint32_t xen_domid; enum xen_mode xen_mode = XEN_EMULATE; -#ifdef SIGRTMIN -#define SIG_IPI (SIGRTMIN+4) -#else -#define SIG_IPI SIGUSR1 -#endif - static int default_serial = 1; static int default_parallel = 1; static int default_virtcon = 1; @@ -1717,7 +1711,7 @@ static int reset_requested; static int shutdown_requested; static int powerdown_requested; int debug_requested; -static int vmstop_requested; +int vmstop_requested; int qemu_shutdown_requested(void) { @@ -1955,10 +1949,7 @@ static void main_loop(void) { int r; -#ifdef CONFIG_IOTHREAD - qemu_system_ready = 1; - qemu_cond_broadcast(&qemu_system_cond); -#endif + qemu_main_loop_start(); for (;;) { do { |