aboutsummaryrefslogtreecommitdiff
path: root/qemu-timer.c
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2011-09-12 14:40:36 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2011-10-21 18:14:30 +0200
commita5c57d64aa61b700db444c4864a1da11f1165db6 (patch)
tree5cf057e28b7d531d146f5cac584ae65d9a2a34fc /qemu-timer.c
parent946fb27c1dc158f10a6e3ce0374a161dce04c27b (diff)
qemu-timer: do not refer to runstate_is_running()
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'qemu-timer.c')
-rw-r--r--qemu-timer.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/qemu-timer.c b/qemu-timer.c
index 8129af6ede..d8507e3e0f 100644
--- a/qemu-timer.c
+++ b/qemu-timer.c
@@ -504,10 +504,7 @@ void qemu_run_all_timers(void)
}
/* vm time timers */
- if (runstate_is_running()) {
- qemu_run_timers(vm_clock);
- }
-
+ qemu_run_timers(vm_clock);
qemu_run_timers(rt_clock);
qemu_run_timers(host_clock);
}