mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
- Initialized lookaside lists earlier in the startup process.
svn path=/trunk/; revision=6663
This commit is contained in:
parent
d26666b86c
commit
6dbdc4ff63
3 changed files with 13 additions and 6 deletions
|
@ -37,11 +37,16 @@
|
||||||
/* FUNCTIONS ****************************************************************/
|
/* FUNCTIONS ****************************************************************/
|
||||||
|
|
||||||
VOID INIT_FUNCTION
|
VOID INIT_FUNCTION
|
||||||
ExInit (VOID)
|
ExInit2(VOID)
|
||||||
|
{
|
||||||
|
ExpInitLookasideLists();
|
||||||
|
}
|
||||||
|
|
||||||
|
VOID INIT_FUNCTION
|
||||||
|
ExInit3 (VOID)
|
||||||
{
|
{
|
||||||
ExInitTimeZoneInfo();
|
ExInitTimeZoneInfo();
|
||||||
ExInitializeWorkerThreads();
|
ExInitializeWorkerThreads();
|
||||||
ExpInitLookasideLists();
|
|
||||||
ExpWin32kInit();
|
ExpWin32kInit();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -102,7 +102,9 @@ VOID
|
||||||
ExpWin32kInit(VOID);
|
ExpWin32kInit(VOID);
|
||||||
|
|
||||||
VOID
|
VOID
|
||||||
ExInit (VOID);
|
ExInit2 (VOID);
|
||||||
|
VOID
|
||||||
|
ExInit3 (VOID);
|
||||||
VOID
|
VOID
|
||||||
ExInitTimeZoneInfo (VOID);
|
ExInitTimeZoneInfo (VOID);
|
||||||
VOID
|
VOID
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* 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
|
* PROJECT: ReactOS kernel
|
||||||
* FILE: ntoskrnl/ke/main.c
|
* FILE: ntoskrnl/ke/main.c
|
||||||
|
@ -453,7 +453,7 @@ ExpInitializeExecutive(VOID)
|
||||||
KEBUGCHECK(SECURITY_INITIALIZATION_FAILED);
|
KEBUGCHECK(SECURITY_INITIALIZATION_FAILED);
|
||||||
|
|
||||||
ObInit();
|
ObInit();
|
||||||
|
ExInit2();
|
||||||
MmInit2();
|
MmInit2();
|
||||||
|
|
||||||
if (!SeInit2())
|
if (!SeInit2())
|
||||||
|
@ -493,7 +493,7 @@ ExpInitializeExecutive(VOID)
|
||||||
*/
|
*/
|
||||||
HalInitSystem(1, (PLOADER_PARAMETER_BLOCK)&KeLoaderBlock);
|
HalInitSystem(1, (PLOADER_PARAMETER_BLOCK)&KeLoaderBlock);
|
||||||
|
|
||||||
ExInit();
|
ExInit3();
|
||||||
KdInit1();
|
KdInit1();
|
||||||
IoInit();
|
IoInit();
|
||||||
PoInit();
|
PoInit();
|
||||||
|
|
Loading…
Reference in a new issue