diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-09-03 17:55:47 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-09-03 17:55:47 +0000 |
commit | a332e112b73d641ca603066e46bb5b05d6c054fc (patch) | |
tree | 28e05df975d98a2e75af8bc4796ee38aa9d3751c /vl.c | |
parent | ca0d1734b44a67ca0077c3f5714d901f7489559d (diff) | |
download | qemu-a332e112b73d641ca603066e46bb5b05d6c054fc.zip |
kqemu_cpu_interrupt support for win32 (Filip Navara)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1566 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -875,6 +875,9 @@ static void host_alarm_handler(int host_signum) qemu_get_clock(rt_clock))) { /* stop the cpu because a timer occured */ cpu_interrupt(global_env, CPU_INTERRUPT_EXIT); +#ifdef USE_KQEMU + kqemu_cpu_interrupt(global_env); +#endif } } |