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.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/kernel/features/proc.c b/kernel/features/proc.c
index 64a4ac1..40a52f8 100644
--- a/kernel/features/proc.c
+++ b/kernel/features/proc.c
@@ -72,6 +72,11 @@ void proc_attach(struct proc *proc)
}
}
+void proc_exit()
+{
+ current->state = PROC_ASLEEP;
+}
+
struct proc *proc_make()
{
struct proc *proc = malloc(sizeof(*proc));