[Zion] Add a ProcessWait syscall.

This commit is contained in:
Drew Galbraith 2023-12-01 11:36:27 -08:00
parent 642fc4d80d
commit d9a4be6555
8 changed files with 29 additions and 8 deletions

View file

@ -53,6 +53,7 @@ extern "C" z_err_t SyscallHandler(uint64_t call_id, void* req) {
// syscall/process.h
CASE(ProcessExit);
CASE(ProcessSpawn);
CASE(ProcessWait);
// syscall/thread.h
CASE(ThreadCreate);
CASE(ThreadStart);