- Initialized lookaside lists earlier in the startup process.

svn path=/trunk/; revision=6663
This commit is contained in:
Hartmut Birr
2003-11-16 15:17:46 +00:00
parent d26666b86c
commit 6dbdc4ff63
3 changed files with 13 additions and 6 deletions
+7 -2
View File
@@ -37,11 +37,16 @@
/* FUNCTIONS ****************************************************************/
VOID INIT_FUNCTION
ExInit (VOID)
ExInit2(VOID)
{
ExpInitLookasideLists();
}
VOID INIT_FUNCTION
ExInit3 (VOID)
{
ExInitTimeZoneInfo();
ExInitializeWorkerThreads();
ExpInitLookasideLists();
ExpWin32kInit();
}
+3 -1
View File
@@ -102,7 +102,9 @@ VOID
ExpWin32kInit(VOID);
VOID
ExInit (VOID);
ExInit2 (VOID);
VOID
ExInit3 (VOID);
VOID
ExInitTimeZoneInfo (VOID);
VOID
+3 -3
View File
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: main.c,v 1.177 2003/10/19 17:33:11 ekohl Exp $
/* $Id: main.c,v 1.178 2003/11/16 15:17:46 hbirr Exp $
*
* PROJECT: ReactOS kernel
* FILE: ntoskrnl/ke/main.c
@@ -453,7 +453,7 @@ ExpInitializeExecutive(VOID)
KEBUGCHECK(SECURITY_INITIALIZATION_FAILED);
ObInit();
ExInit2();
MmInit2();
if (!SeInit2())
@@ -493,7 +493,7 @@ ExpInitializeExecutive(VOID)
*/
HalInitSystem(1, (PLOADER_PARAMETER_BLOCK)&KeLoaderBlock);
ExInit();
ExInit3();
KdInit1();
IoInit();
PoInit();