diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2010-03-10 11:38:54 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2010-03-17 11:14:54 -0500 |
commit | d6f4ade214a9f74dca9495b83a24ff9c113e4f9a (patch) | |
tree | 1ba429cdaebf5908a061e89380ebdcad97eb68be /sysemu.h | |
parent | 16b151c3935b0855827de5ff19e0b636b65b4281 (diff) | |
download | qemu-d6f4ade214a9f74dca9495b83a24ff9c113e4f9a.zip |
disentangle tcg and deadline calculation
Just tell main_loop_wait whether to be blocking or nonblocking, so that
there is no need to call qemu_cpus_have_work from the timer subsystem.
Instead, tcg_cpu_exec can say "we want the main loop not to block because
we have stuff to do".
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'sysemu.h')
-rw-r--r-- | sysemu.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -64,7 +64,7 @@ void cpu_synchronize_all_post_init(void); void qemu_announce_self(void); -void main_loop_wait(int timeout); +void main_loop_wait(int nonblocking); int qemu_savevm_state_begin(Monitor *mon, QEMUFile *f, int blk_enable, int shared); |