1 2 3 4 5 6 7 8 9 10 11
#ifndef _JOVE_TCB_H #define _JOVE_TCB_H 1 #include <stddef.h> #include <stdint.h> struct jove_ThreadControlBlock; void tcb_init(void *task_main); #endif