aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2010-03-10 11:38:43 +0100
committerAnthony Liguori <aliguori@us.ibm.com>2010-03-17 11:14:53 -0500
commit1db89e912365ff36ef436732ed81e4a1bb43056e (patch)
treebdfa501458c886f32b06120dcb1ad2fddef733f8
parent7a5e5838116a752d51c443dbb1cc61541c02b597 (diff)
tweak qemu_notify_event
Instead of testing specially next_cpu in host_alarm_handler, just do that in qemu_notify_event. The idea is, if we are not running (or not yet running) target CPU code, prepare things so that the execution loop is exited asap; just make that clear. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rw-r--r--vl.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/vl.c b/vl.c
index 730ea50aa..0b75cfda7 100644
--- a/vl.c
+++ b/vl.c
@@ -1055,13 +1055,6 @@ static void host_alarm_handler(int host_signum)
qemu_get_clock(host_clock))) {
t->expired = alarm_has_dynticks(t);
-
-#ifndef CONFIG_IOTHREAD
- if (next_cpu) {
- /* stop the currently executing cpu because a timer occured */
- cpu_exit(next_cpu);
- }
-#endif
t->pending = 1;
qemu_notify_event();
}
@@ -3364,6 +3357,9 @@ void qemu_notify_event(void)
if (env) {
cpu_exit(env);
}
+ if (next_cpu && env != next_cpu) {
+ cpu_exit(next_cpu);
+ }
}
void qemu_mutex_lock_iothread(void) {}