mirror of https://github.com/xqemu/xqemu.git
Debugger single step without interrupts (Jason Wessel).
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4432 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
c2bc0e3880
commit
34808ac170
2
vl.c
2
vl.c
|
@ -7032,6 +7032,7 @@ void main_loop_wait(int timeout)
|
||||||
qemu_aio_poll();
|
qemu_aio_poll();
|
||||||
|
|
||||||
if (vm_running) {
|
if (vm_running) {
|
||||||
|
if (!(cur_cpu->singlestep_enabled & SSTEP_NOTIMER))
|
||||||
qemu_run_timers(&active_timers[QEMU_TIMER_VIRTUAL],
|
qemu_run_timers(&active_timers[QEMU_TIMER_VIRTUAL],
|
||||||
qemu_get_clock(vm_clock));
|
qemu_get_clock(vm_clock));
|
||||||
/* run dma transfers, if any */
|
/* run dma transfers, if any */
|
||||||
|
@ -7039,6 +7040,7 @@ void main_loop_wait(int timeout)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* real time timers */
|
/* real time timers */
|
||||||
|
if (!(cur_cpu->singlestep_enabled & SSTEP_NOTIMER))
|
||||||
qemu_run_timers(&active_timers[QEMU_TIMER_REALTIME],
|
qemu_run_timers(&active_timers[QEMU_TIMER_REALTIME],
|
||||||
qemu_get_clock(rt_clock));
|
qemu_get_clock(rt_clock));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue