diff options
author | Jon Santmyer <jon@jonsantmyer.com> | 2025-08-19 15:03:42 -0400 |
---|---|---|
committer | Jon Santmyer <jon@jonsantmyer.com> | 2025-08-19 15:03:42 -0400 |
commit | 772717dc22e04b4d168d0f77bee6b6357118768c (patch) | |
tree | 9da95703c3376091904e295930104b51c280008d /include/arch/x86_64/syscall.h | |
parent | 7ee9347560768641096df68c545ac085a20233e4 (diff) | |
download | jove-kernel-772717dc22e04b4d168d0f77bee6b6357118768c.tar.gz jove-kernel-772717dc22e04b4d168d0f77bee6b6357118768c.tar.bz2 jove-kernel-772717dc22e04b4d168d0f77bee6b6357118768c.zip |
refactor KO_MEMORY_MAPPING invokemain
Diffstat (limited to 'include/arch/x86_64/syscall.h')
-rw-r--r-- | include/arch/x86_64/syscall.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/include/arch/x86_64/syscall.h b/include/arch/x86_64/syscall.h index 2d5060e..e470537 100644 --- a/include/arch/x86_64/syscall.h +++ b/include/arch/x86_64/syscall.h @@ -4,13 +4,11 @@ /**@ENUM mapping invokes*/ enum { - /*[target path][u8 funcid]*/ - INVOKE_MAPPING_RELEASE = 0, - /*[target path][u8 funcid][u16 pmli][dest path]*/ - INVOKE_MAPPING_GET, - /*[target path][u8 funcid][u16 pmli][untyped path][u64 flags]*/ + /*[target path][u8 funcid][u8 depth][u16*depth pmli]*/ + INVOKE_MAPPING_EXISTS = 0, + /*[target path][u8 funcid][u8 depth][u16*depth pmli][untyped path][u64 flags]*/ INVOKE_MAPPING_MAP, - /*[target path][u8 funcid][u16 pmli][mapped path]*/ + /*[target path][u8 funcid][u8 depth][u16*depth pmli][dest path]*/ INVOKE_MAPPING_UNMAP }; |