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

View File

@@ -15,6 +15,6 @@ extern kern_status_t sys_vm_object_create(
enum vm_prot prot,
kern_handle_t *out_handle);
extern virt_addr_t syscall_get_func(unsigned int sysid);
extern virt_addr_t syscall_get_function(unsigned int sysid);
#endif