Increase KdpStallScaleFactor by a factor of 10. Fixes initial delay of debug output on faster PCs with WinDBG.

svn path=/trunk/; revision=52514
This commit is contained in:
Olaf Siejka 2011-07-03 10:13:53 +00:00
parent 9629690528
commit afc124a8c2

View file

@ -14,7 +14,7 @@ PFNDBGPRNT KdpDbgPrint = NULL;
ULONG CurrentPacketId = INITIAL_PACKET_ID | SYNC_PACKET_ID;
ULONG RemotePacketId = 0;
BOOLEAN KdpPhase1Complete = FALSE;
ULONG KdpStallScaleFactor = 1000;
ULONG KdpStallScaleFactor = 10000;
/* PRIVATE FUNCTIONS **********************************************************/