#ifndef _JOVE_TCB_H #define _JOVE_TCB_H 1 #include #include typedef struct jove_ThreadControlBlock { uintmax_t id; struct jove_ThreadControlBlock *children; struct jove_ThreadControlBlock *next; void *stack; uintptr_t sp, ksp; void *pml4; } tcb_t; #endif