Author: hbelusca Date: Sat May 23 02:08:50 2015 New Revision: 67854
URL: http://svn.reactos.org/svn/reactos?rev=67854&view=rev Log: [NTVDM]: Temporarily disable yielding (see r67851) because it causes timing issues (slowdowns).
Modified: trunk/reactos/subsystems/mvdm/ntvdm/clock.c
Modified: trunk/reactos/subsystems/mvdm/ntvdm/clock.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/mvdm/ntvdm/clock... ============================================================================== --- trunk/reactos/subsystems/mvdm/ntvdm/clock.c [iso-8859-1] (original) +++ trunk/reactos/subsystems/mvdm/ntvdm/clock.c [iso-8859-1] Sat May 23 02:08:50 2015 @@ -120,7 +120,8 @@ }
/* Yield execution to other threads */ - NtYieldExecution(); + // FIXME: Disabled because it causes timing issues (slowdowns). + // NtYieldExecution(); } }