diff options
Diffstat (limited to 'kernel/features/proc.c')
-rw-r--r-- | kernel/features/proc.c | 5 |
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)); |