// SPDX-FileCopyrightText: 2018 Michael Jeanson // // SPDX-License-Identifier: LGPL-2.1-or-later #ifndef _URCU_ARCH_RISCV_H #define _URCU_ARCH_RISCV_H /* * arch/riscv.h: definitions for the RISC-V architecture */ #include #include #include #ifdef __cplusplus extern "C" { #endif #include #include /* * On Linux, define the membarrier system call number if not yet available in * the system headers. */ #if (defined(__linux__) && !defined(__NR_membarrier)) #define __NR_membarrier 283 #endif #ifdef __cplusplus } #endif #include #endif /* _URCU_ARCH_RISCV_H */