[Zion] Add a syscall to get a memory object's length.

This commit is contained in:
Drew Galbraith 2023-11-19 19:02:55 -08:00
parent 30b6511467
commit 2e4a12661d
5 changed files with 15 additions and 1 deletions

View file

@ -66,6 +66,7 @@ extern "C" z_err_t SyscallHandler(uint64_t call_id, void* req) {
CASE(MemoryObjectCreatePhysical);
CASE(MemoryObjectCreateContiguous);
CASE(MemoryObjectDuplicate);
CASE(MemoryObjectInspect);
// syscall/ipc.h
CASE(ChannelCreate);
CASE(ChannelSend);