add: zombify task

This commit is contained in:
2025-02-07 11:28:22 +01:00
parent a9ed5947a8
commit 3766464c47
3 changed files with 24 additions and 12 deletions

View File

@ -36,6 +36,7 @@ i8 create_kernel_task(void);
void remove_task(struct task *task);
struct task *copy_task(const struct task *task);
void kfork(struct task *daddy);
void zombify_task(struct task *task);
// utils
void exec_fn(void (*fn)(void));