summaryrefslogtreecommitdiffstats
path: root/include/arch/x86_64/object.h
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2025-08-29 09:43:09 -0400
committerJon Santmyer <jon@jonsantmyer.com>2025-08-29 09:43:09 -0400
commit8f0ba2fd31408d04175513b8826bf9418ad8b087 (patch)
tree22dc7902bf32f77bfd4ded444c35fa9f219ac9e5 /include/arch/x86_64/object.h
parent772717dc22e04b4d168d0f77bee6b6357118768c (diff)
downloadjove-kernel-8f0ba2fd31408d04175513b8826bf9418ad8b087.tar.gz
jove-kernel-8f0ba2fd31408d04175513b8826bf9418ad8b087.tar.bz2
jove-kernel-8f0ba2fd31408d04175513b8826bf9418ad8b087.zip
move memory functions to memory folder
Diffstat (limited to 'include/arch/x86_64/object.h')
-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 77b07ea..4efaf71 100644
--- a/include/arch/x86_64/object.h
+++ b/include/arch/x86_64/object.h
@@ -7,16 +7,4 @@
#define KERNEL_STACKBYTES 4096
#endif
-typedef struct jove_ThreadControlBlock
-{
- void *stack;
- uintptr_t sp, ksp;
- void *pml4;
- void *mailbox;
-
- /* PML caching for faster calls?*/
-
- uint8_t kstack[KERNEL_STACKBYTES];
-} tcb_t;
-
#endif