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