diff options
author | Marcelo Tosatti <mtosatti@redhat.com> | 2010-05-04 09:45:24 -0300 |
---|---|---|
committer | Marcelo Tosatti <mtosatti@redhat.com> | 2010-05-11 14:02:22 -0300 |
commit | 3ae9501c5bfe874017a385ca437583f5cf66a40a (patch) | |
tree | 8e467733af7ae2190fed4b8709528cce8e7b2fbb /cpus.c | |
parent | 2705d56a6a7e9c7833e04d33aedbc01d2280a280 (diff) | |
download | qemu-3ae9501c5bfe874017a385ca437583f5cf66a40a.tar.gz qemu-3ae9501c5bfe874017a385ca437583f5cf66a40a.tar.bz2 qemu-3ae9501c5bfe874017a385ca437583f5cf66a40a.zip |
add cpu_is_stopped helper
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'cpus.c')
-rw-r--r-- | cpus.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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) { |