exectos/xtoskrnl/ke/krnlinit.c
belliash e37e5b97af
All checks were successful
ci/woodpecker/push/build Pipeline was successful
Initial version of the kernel initialization block, needed to start the kernel
2022-11-12 23:17:44 +01:00

26 lines
561 B
C

/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: xtoskrnl/ke/krnlinit.c
* DESCRIPTION: XT kernel initialization
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#include <xtkmapi.h>
/**
* This routine starts up the XT kernel. It is called by boot loader.
*
* @return This routine does not return any value.
*
* @since XT 1.0
*/
XTAPI
VOID
KeStartXtSystem(IN PKERNEL_INITIALIZATION_BLOCK LoaderBlock)
{
/* Enter infinite kernel thread loop */
for(;;);
}