ptos: Initialize per-processor pool regions

Signed-off-by: Chloe M <chloe@mensia.org>
This commit is contained in:
2026-07-13 18:35:39 -04:00
parent 7a8fbe7025
commit 895521c510
6 changed files with 94 additions and 1 deletions
+1
View File
@@ -14,6 +14,7 @@ CFILES += $(shell find ../lib -name "*.c")
CFILES += $(shell find ../xt -name "*.c")
CFILES += $(shell find ../drivers -name "*.c")
CFILES += $(shell find ../mm -name "*.c")
CFILES += $(shell find ../ex -name "*.c")
DFILES = $(CFILES:.c=.d)
OFILES = $(CFILES:.c=.o)
+3
View File
@@ -59,4 +59,7 @@ KiKernelInit(VOID)
/* Initialize virtual memory */
MmVmInit();
/* Phase 2 init of bootstrap core */
HalKpcrP2Init(&BootstrapCore);
}