Per-cpu kernel pseudo process

This commit is contained in:
2026-03-11 17:47:12 +01:00
parent f1268ec1ba
commit e765855309
10 changed files with 89 additions and 33 deletions

View File

@@ -57,6 +57,11 @@ void bootmain (void) {
ioapic_init ();
hpet_init ();
proc_pid_alloc_init ();
procgroup_pgid_alloc_init ();
bsp_cpu->kproc = kproc_create ();
devices_init ();
vfs_init ();
@@ -66,9 +71,6 @@ void bootmain (void) {
struct device* temp0 = device_find ("TEMP0");
vfs_create_volume ("TEMP", FS_FAT16, temp0, true);
proc_pid_alloc_init ();
procgroup_pgid_alloc_init ();
smp_init ();
proc_init ();