From 317ae30716af6dfa6e6697905dc28b81bdd5d212 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Sat, 4 Oct 2014 00:18:39 +0000 Subject: [PATCH] [NTVDM]: DPRINT the CPU level for diagnostics purposes. svn path=/trunk/; revision=64517 --- reactos/subsystems/ntvdm/cpu/cpu.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reactos/subsystems/ntvdm/cpu/cpu.c b/reactos/subsystems/ntvdm/cpu/cpu.c index bd744093c43..bb09cd02662 100644 --- a/reactos/subsystems/ntvdm/cpu/cpu.c +++ b/reactos/subsystems/ntvdm/cpu/cpu.c @@ -124,10 +124,12 @@ VOID CpuSimulate(VOID) 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;