From 8f0ba2fd31408d04175513b8826bf9418ad8b087 Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Fri, 29 Aug 2025 09:43:09 -0400 Subject: move memory functions to memory folder --- include/arch/x86_64/object.h | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'include/arch/x86_64/object.h') 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 -- cgit v1.2.1