1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef APOS_ARCH_TCB_H #define APOS_ARCH_TCB_H /** * @file lock.h * Arch-specific tcb stuff. */ #if defined(riscv64) #include "../../arch/riscv64/include/tcb.h" #elif defined(riscv32) #include "../../arch/riscv32/include/tcb.h" #endif #endif /* APOS_ARCH_TCB_H */