summaryrefslogtreecommitdiffstats
path: root/include/arch/x86_64
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2025-08-11 19:04:26 -0400
committerJon Santmyer <jon@jonsantmyer.com>2025-08-11 19:04:26 -0400
commitf466364b8a3858e7b3f19258d142851cb4a7e6d6 (patch)
treea22819dc585c44a6dd0cdd5c6856420443a031eb /include/arch/x86_64
parentc4f8ef91f18d854a4ede7a94e95b2eab898d6963 (diff)
downloadjove-kernel-f466364b8a3858e7b3f19258d142851cb4a7e6d6.tar.gz
jove-kernel-f466364b8a3858e7b3f19258d142851cb4a7e6d6.tar.bz2
jove-kernel-f466364b8a3858e7b3f19258d142851cb4a7e6d6.zip
remove _initData, replace with enum indexesmain
Diffstat (limited to 'include/arch/x86_64')
-rw-r--r--include/arch/x86_64/object.h12
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;