[Zion] Add a mutex object with appropriate syscalls.

This commit is contained in:
Drew Galbraith 2023-10-25 14:47:45 -07:00
parent 4c2237fa72
commit 4c04f9d561
19 changed files with 160 additions and 60 deletions

View file

@ -14,6 +14,7 @@ class KernelObject : public glcr::RefCounted<KernelObject> {
PORT = 0x6,
ENDPOINT = 0x7,
REPLY_PORT = 0x8,
MUTEX = 0x9,
};
virtual uint64_t TypeTag() = 0;