#ifndef _JOVE_x86_64_OBJECT_H #define _JOVE_x86_64_OBJECT_H 1 #include #ifndef KERNEL_STACKBYTES #define KERNEL_STACKBYTES 4096 #endif typedef struct jove_ThreadControlBlock { void *stack; uintptr_t sp, ksp; void *pml4; uint8_t kstack[KERNEL_STACKBYTES]; } tcb_t; #endif