kernel: refactor syscall dispatch system

This commit is contained in:
2026-02-08 16:17:11 +00:00
parent c424e8127e
commit 9f7b7bdd2d
6 changed files with 30 additions and 23 deletions

13
syscall/vm-object.c Normal file
View File

@@ -0,0 +1,13 @@
#include <mango/handle.h>
#include <mango/printk.h>
#include <mango/vm-region.h>
kern_status_t sys_vm_object_create(
const char *name,
size_t len,
enum vm_prot prot,
kern_handle_t *out_handle)
{
printk("sys_vm_object_create()");
return KERN_UNIMPLEMENTED;
}