This patch simplifies cpu_can_run(). Signed-off-by: Jun Koi <junkoi2...@gmail.com>
diff --git a/cpus.c b/cpus.c index 0debe77..4adb66d 100644 --- a/cpus.c +++ b/cpus.c @@ -98,9 +98,7 @@ static void do_vm_stop(int reason) static int cpu_can_run(CPUState *env) { - if (env->stop) - return 0; - if (env->stopped || !vm_running) + if (env->stop || env->stopped || !vm_running) return 0; return 1; }