aboutsummaryrefslogtreecommitdiff
path: root/kernel/features/proc.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/features/proc.c')
-rw-r--r--kernel/features/proc.c2
1 files changed, 2 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)