Implement system and idle process creation and initialization functions
Some checks failed
Builds / ExectOS (i686, release) (push) Failing after 25s
Builds / ExectOS (i686, debug) (push) Failing after 36s
Builds / ExectOS (amd64, debug) (push) Failing after 39s
Builds / ExectOS (amd64, release) (push) Failing after 27s

This commit is contained in:
2026-07-14 21:41:15 +02:00
parent 06291d2525
commit b256c260b9
3 changed files with 187 additions and 0 deletions

View File

@@ -9,9 +9,15 @@
#include <xtos.hh>
/* Pointer to the IDLE process object */
PEPROCESS PS::Process::IdleProcess;
/* Pointer to the system process object */
PEPROCESS PS::Process::SystemProcess;
/* Global handle to the root system process */
HANDLE PS::Process::SystemProcessHandle;
/* Global object type descriptor for Process objects */
POBJECT_TYPE PS::ProcessManager::ProcessType;