Kernel: We now store the processes exit code

This commit is contained in:
Bananymous
2023-06-10 17:31:56 +03:00
parent 47c69e9def
commit 4cdeb98897
5 changed files with 9 additions and 8 deletions

View File

@@ -40,7 +40,7 @@ namespace Kernel
static BAN::ErrorOr<Process*> create_userspace(BAN::StringView);
~Process();
[[noreturn]] void exit();
[[noreturn]] void exit(int status);
void add_thread(Thread*);
void on_thread_exit(Thread&);