diff options
author | Jon Santmyer <jon@jonsantmyer.com> | 2025-08-11 19:04:26 -0400 |
---|---|---|
committer | Jon Santmyer <jon@jonsantmyer.com> | 2025-08-11 19:04:26 -0400 |
commit | f466364b8a3858e7b3f19258d142851cb4a7e6d6 (patch) | |
tree | a22819dc585c44a6dd0cdd5c6856420443a031eb /include/arch/x86_64/object.h | |
parent | c4f8ef91f18d854a4ede7a94e95b2eab898d6963 (diff) | |
download | jove-kernel-main.tar.gz jove-kernel-main.tar.bz2 jove-kernel-main.zip |
remove _initData, replace with enum indexesmain
Diffstat (limited to 'include/arch/x86_64/object.h')
-rw-r--r-- | include/arch/x86_64/object.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/arch/x86_64/object.h b/include/arch/x86_64/object.h index 6512049..770487b 100644 --- a/include/arch/x86_64/object.h +++ b/include/arch/x86_64/object.h @@ -7,18 +7,6 @@ #define KERNEL_STACKBYTES 4096 #endif -typedef struct jove_InitData -{ - uint8_t log_object; - uint16_t untyped_data_dir; - uint16_t processor_dir; - uint8_t pm_object; //Page mapping object. - uint16_t initrd_dir; //Init ramdisk files directory. - uint8_t tcb_object; - uint8_t message_object; - uintptr_t message_object_address; -} init_data_t; - typedef struct jove_ThreadControlBlock { void *stack; |