Change PID0

This commit is contained in:
notsomeidiot123 2024-11-21 12:37:11 -05:00
parent a6883dd536
commit 41ef288243
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
#include "drivers/cpuio.h"
#include "system/scheduler.h"
void dead_proc(){
void pid0(){
for(;;);
}
extern void kmain(kernel_info_t *kernel_info){
@ -20,7 +20,7 @@ extern void kmain(kernel_info_t *kernel_info){
//TODO: Map and load filesystem and disk modules
//TODO: Start Initial Process
init_scheduler();
thread_start(dead_proc);
thread_start(pid0);
enable_interrupts();
for(;;);
return;