mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 04:13:01 +00:00
33 lines
742 B
C
33 lines
742 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS kernel
|
|
* FILE: ntoskrnl/ke/kernel.c
|
|
* PURPOSE: Initializes the kernel
|
|
* PROGRAMMER: David Welch (welch@mcmail.com)
|
|
* UPDATE HISTORY:
|
|
* Created 22/05/98
|
|
*/
|
|
|
|
/* INCLUDES *****************************************************************/
|
|
|
|
#include <ddk/ntddk.h>
|
|
#include <internal/ke.h>
|
|
|
|
#define NDEBUG
|
|
#include <internal/debug.h>
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
VOID KeInit1(VOID)
|
|
{
|
|
KeInitExceptions ();
|
|
KeInitInterrupts ();
|
|
}
|
|
|
|
VOID KeInit2(VOID)
|
|
{
|
|
KeInitDpc();
|
|
KeInitializeBugCheck();
|
|
KeInitializeDispatcher();
|
|
KeInitializeTimerImpl();
|
|
}
|