[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

@ -12,6 +12,7 @@ typedef uint64_t z_err_t;
// Process Calls.
const uint64_t kZionProcessExit = 0x1;
const uint64_t kZionProcessSpawn = 0x2;
const uint64_t kZionProcessWait = 0x3;
// Thread Calls.
const uint64_t kZionThreadCreate = 0x10;