diff options
author | Jon Santmyer <jon@jonsantmyer.com> | 2025-08-10 15:46:33 -0400 |
---|---|---|
committer | Jon Santmyer <jon@jonsantmyer.com> | 2025-08-10 15:46:33 -0400 |
commit | 65ba015d6c1f248d36ad01a653bc49637804b15b (patch) | |
tree | a77c3fb3ca7ecac8f65eb9638d152f1e90307d0a /lib/libjove/include/arch | |
download | jove-os-65ba015d6c1f248d36ad01a653bc49637804b15b.tar.gz jove-os-65ba015d6c1f248d36ad01a653bc49637804b15b.tar.bz2 jove-os-65ba015d6c1f248d36ad01a653bc49637804b15b.zip |
working usermode objdir iteration
Diffstat (limited to 'lib/libjove/include/arch')
-rw-r--r-- | lib/libjove/include/arch/x86_64/object-pagemap.h | 14 | ||||
-rw-r--r-- | lib/libjove/include/arch/x86_64/syscall.h | 12 |
2 files changed, 26 insertions, 0 deletions
diff --git a/lib/libjove/include/arch/x86_64/object-pagemap.h b/lib/libjove/include/arch/x86_64/object-pagemap.h new file mode 100644 index 0000000..55b0570 --- /dev/null +++ b/lib/libjove/include/arch/x86_64/object-pagemap.h @@ -0,0 +1,14 @@ +#ifndef _LIBJOVE_ARCH_x86_64_OBJECT_PAGEMAP_H +#define _LIBJOVE_ARCH_x86_64_OBJECT_PAGEMAP_H 1 + +#include <jove/object-typed.h> + +typedef struct KernelObjectPageMapping +{ + KernelObjectTyped typed; + uint8_t level; +} KernelObjectPageMapping; + + + +#endif diff --git a/lib/libjove/include/arch/x86_64/syscall.h b/lib/libjove/include/arch/x86_64/syscall.h new file mode 100644 index 0000000..1d7df53 --- /dev/null +++ b/lib/libjove/include/arch/x86_64/syscall.h @@ -0,0 +1,12 @@ +#ifndef _LIBJOVE_ARCH_x86_64_SYSCALL_H +#define _LIBJOVE_ARCH_x86_64_SYSCALL_H 1 + +#include <stdint.h> + +#include <kernel/object.h> +#include <jove/object-path.h> + +int _syscall_invoke_mapping_get(KernelObjectPath path, uint16_t pmli, KernelObjectPath destPath); + + +#endif |