Author: hbelusca
Date: Sat Oct 4 00:18:39 2014
New Revision: 64517
URL:
http://svn.reactos.org/svn/reactos?rev=64517&view=rev
Log:
[NTVDM]: DPRINT the CPU level for diagnostics purposes.
Modified:
trunk/reactos/subsystems/ntvdm/cpu/cpu.c
Modified: trunk/reactos/subsystems/ntvdm/cpu/cpu.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/ntvdm/cpu/cpu.c…
==============================================================================
--- trunk/reactos/subsystems/ntvdm/cpu/cpu.c [iso-8859-1] (original)
+++ trunk/reactos/subsystems/ntvdm/cpu/cpu.c [iso-8859-1] Sat Oct 4 00:18:39 2014
@@ -124,10 +124,12 @@
return;
}
CpuCallLevel++;
+ DPRINT1("CpuSimulate --> Level %d\n", CpuCallLevel);
CpuRunning = TRUE;
while (VdmRunning && CpuRunning) ClockUpdate();
+ DPRINT1("CpuSimulate <-- Level %d\n", CpuCallLevel);
CpuCallLevel--;
if (CpuCallLevel < 0) CpuCallLevel = 0;