qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [4432] Debugger single step without interrupts (Jason Wesse


From: Edgar E. Iglesias
Subject: [Qemu-devel] [4432] Debugger single step without interrupts (Jason Wessel).
Date: Mon, 12 May 2008 07:44:26 +0000

Revision: 4432
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4432
Author:   edgar_igl
Date:     2008-05-12 07:44:23 +0000 (Mon, 12 May 2008)

Log Message:
-----------
Debugger single step without interrupts (Jason Wessel).

Modified Paths:
--------------
    trunk/vl.c

Modified: trunk/vl.c
===================================================================
--- trunk/vl.c  2008-05-11 19:24:10 UTC (rev 4431)
+++ trunk/vl.c  2008-05-12 07:44:23 UTC (rev 4432)
@@ -7032,6 +7032,7 @@
     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 @@
     }
 
     /* real time timers */
+    if (!(cur_cpu->singlestep_enabled & SSTEP_NOTIMER))
     qemu_run_timers(&active_timers[QEMU_TIMER_REALTIME],
                     qemu_get_clock(rt_clock));
 






reply via email to

[Prev in Thread] Current Thread [Next in Thread]