Implement exit syscall

This commit is contained in:
Justin C. Miller
2019-03-14 22:28:21 -07:00
parent f7558e3d18
commit be007c6278
5 changed files with 27 additions and 2 deletions

View File

@@ -15,6 +15,7 @@ enum class syscall : uint64_t
send = 0x0006,
receive = 0x0007,
fork = 0x0008,
exit = 0x0009,
last_syscall
};