diff options
author | edgar_igl <edgar_igl@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-12 07:44:23 +0000 |
---|---|---|
committer | edgar_igl <edgar_igl@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-12 07:44:23 +0000 |
commit | 34808ac170cdeae8f0735470f086153a27e3ee2d (patch) | |
tree | 24619725b1887b640266ae147d327ffac3bf13fe /vl.c | |
parent | c2bc0e388016a8a2a47c35334f1c11c85901bedc (diff) |
Debugger single step without interrupts (Jason Wessel).
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4432 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -7032,6 +7032,7 @@ void main_loop_wait(int timeout) qemu_aio_poll(); if (vm_running) { + if (!(cur_cpu->singlestep_enabled & SSTEP_NOTIMER)) qemu_run_timers(&active_timers[QEMU_TIMER_VIRTUAL], qemu_get_clock(vm_clock)); /* run dma transfers, if any */ @@ -7039,6 +7040,7 @@ void main_loop_wait(int timeout) } /* real time timers */ + if (!(cur_cpu->singlestep_enabled & SSTEP_NOTIMER)) qemu_run_timers(&active_timers[QEMU_TIMER_REALTIME], qemu_get_clock(rt_clock)); |