diff options
author | Jon Santmyer <jon@jonsantmyer.com> | 2025-08-10 15:40:19 -0400 |
---|---|---|
committer | Jon Santmyer <jon@jonsantmyer.com> | 2025-08-10 15:40:19 -0400 |
commit | c4f8ef91f18d854a4ede7a94e95b2eab898d6963 (patch) | |
tree | c2772c4f380a684b6fa347f03b13f9476bf9500c /include/arch/x86_64/syscall.h | |
parent | b905869a35f062a4e5072f10bec3a2ba3db0e365 (diff) | |
download | jove-kernel-c4f8ef91f18d854a4ede7a94e95b2eab898d6963.tar.gz jove-kernel-c4f8ef91f18d854a4ede7a94e95b2eab898d6963.tar.bz2 jove-kernel-c4f8ef91f18d854a4ede7a94e95b2eab898d6963.zip |
working usermode objdir iteration
Diffstat (limited to 'include/arch/x86_64/syscall.h')
-rw-r--r-- | include/arch/x86_64/syscall.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/arch/x86_64/syscall.h b/include/arch/x86_64/syscall.h new file mode 100644 index 0000000..2d5060e --- /dev/null +++ b/include/arch/x86_64/syscall.h @@ -0,0 +1,18 @@ +#ifndef _JOVE_ARCH_x86_64_SYSCALL_H +#define _JOVE_ARCH_x86_64_SYSCALL_H 1 + +/**@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]*/ + INVOKE_MAPPING_MAP, + /*[target path][u8 funcid][u16 pmli][mapped path]*/ + INVOKE_MAPPING_UNMAP +}; + + +#endif |