diff options
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/features/proc.c | 2 | ||||
-rw-r--r-- | kernel/main.c | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/kernel/features/proc.c b/kernel/features/proc.c index d76312c..c0216bc 100644 --- a/kernel/features/proc.c +++ b/kernel/features/proc.c @@ -142,6 +142,8 @@ void proc_exit(struct proc *proc, int status) printf("Process %s exited with status %d\n", proc->name, status); quantum = 0; // TODO: Add quantum to each process struct? + sti(); + hlt(); } void proc_yield(struct regs *r) diff --git a/kernel/main.c b/kernel/main.c index 563cae7..665d474 100644 --- a/kernel/main.c +++ b/kernel/main.c @@ -11,6 +11,7 @@ #include <mouse.h> #include <net.h> #include <pci.h> +#include <print.h> #include <serial.h> #include <syscall.h> #include <timer.h> |