Signed-off-by: Marcelo Tosatti <mtosa...@redhat.com> Index: qemu/cpu-all.h =================================================================== --- qemu.orig/cpu-all.h +++ qemu/cpu-all.h @@ -818,6 +818,7 @@ void cpu_watchpoint_remove_all(CPUState void cpu_single_step(CPUState *env, int enabled); void cpu_reset(CPUState *s); +int cpu_is_stopped(CPUState *env); void run_on_cpu(CPUState *env, void (*func)(void *data), void *data); #define CPU_LOG_TB_OUT_ASM (1 << 0) Index: qemu/cpus.c =================================================================== --- qemu.orig/cpus.c +++ qemu/cpus.c @@ -91,6 +91,11 @@ void cpu_synchronize_all_post_init(void) } } +int cpu_is_stopped(CPUState *env) +{ + return !vm_running || env->stopped; +} + static void do_vm_stop(int reason) { if (vm_running) {
- [Qemu-devel] [patch uq/master 0/9] enable smp > 1 and r... Marcelo Tosatti
- [Qemu-devel] [patch uq/master 5/9] kvm: synchronize s... Marcelo Tosatti
- [Qemu-devel] [patch uq/master 4/9] port qemu-kvm's on... Marcelo Tosatti
- [Qemu-devel] [patch uq/master 7/9] move stop/stopped ... Marcelo Tosatti
- [Qemu-devel] [patch uq/master 6/9] add cpu_is_stopped... Marcelo Tosatti
- [Qemu-devel] [patch uq/master 9/9] kvm: enable smp &g... Marcelo Tosatti
- [Qemu-devel] [patch uq/master 3/9] standardize on qem... Marcelo Tosatti
- [Qemu-devel] [patch uq/master 1/9] kvm: set cpu_singl... Marcelo Tosatti
- [Qemu-devel] [patch uq/master 2/9] make SIG_IPI to tc... Marcelo Tosatti
- [Qemu-devel] [patch uq/master 8/9] kvm: validate cont... Marcelo Tosatti
- [Qemu-devel] Re: [patch uq/master 0/9] enable smp >... Anthony Liguori
- [Qemu-devel] Re: [patch uq/master 0/9] enable smp >... Avi Kivity