Initialize CPU power structures, idle process and idle thread

This commit is contained in:
2023-11-02 23:07:11 +01:00
parent e11ef2f008
commit 63f8dbc59b
6 changed files with 93 additions and 0 deletions

View File

@@ -25,6 +25,10 @@ XTAPI
PKTHREAD
KeGetCurrentThread(VOID);
XTAPI
VOID
KepInitializeKernel(VOID);
XTAPI
VOID
KepInitializeMachine(VOID);

View File

@@ -30,4 +30,7 @@ EXTERN ETHREAD KeInitialThread;
/* Kernel service descriptor table */
EXTERN KSERVICE_DESCRIPTOR_TABLE KeServiceDescriptorTable[KSERVICE_TABLES_COUNT];
/* Kernel process list */
EXTERN LIST_ENTRY KepProcessListHead;
#endif /* __XTOSKRNL_GLOBALS_H */

View File

@@ -25,6 +25,10 @@ XTAPI
PKTHREAD
KeGetCurrentThread(VOID);
XTAPI
VOID
KepInitializeKernel(VOID);
XTAPI
VOID
KepInitializeMachine(VOID);