[Zion] Add a semaphore primitive with related syscalls.

This commit is contained in:
Drew Galbraith 2023-11-22 10:19:56 -08:00
parent 2df1f6c006
commit da3901e104
9 changed files with 107 additions and 1 deletions

View file

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