From 758134fc0322c3eb545f13eea25451eaadeb44bf Mon Sep 17 00:00:00 2001 From: ReactOS Portable Systems Group Date: Mon, 14 Jul 2008 03:19:12 +0000 Subject: [PATCH] - Remove the 5-second delay in the initialization code, we've validated this works now. svn path=/trunk/; revision=34492 --- reactos/ntoskrnl/ex/init.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/reactos/ntoskrnl/ex/init.c b/reactos/ntoskrnl/ex/init.c index 2c8eb5b2a46..c9243ff9d4a 100644 --- a/reactos/ntoskrnl/ex/init.c +++ b/reactos/ntoskrnl/ex/init.c @@ -1703,17 +1703,6 @@ Phase1InitializationDiscard(IN PVOID Context) /* Initialize in-place execution support */ XIPInit(LoaderBlock); - -#ifdef _M_ARM - // - // ARM: Force a wait so we can test thread scheduling, timing and context switching - // - DPRINT1("Beginning 5 second wait...\n"); - Timeout.QuadPart = Int32x32To64(5, -10000000); - KeDelayExecutionThread(KernelMode, FALSE, &Timeout); - DPRINT1("Wait complete\n"); - while (TRUE); -#endif /* Set maximum update to 75% */ InbvSetProgressBarSubset(25, 75);