blob: 2a94fbf11a7ef60264cf59361804f11f30e30707 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* SPDX-License-Identifier: copyleft-next-0.3.1 */
/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
#ifndef KMI_ARCH_LOCK_H
#define KMI_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 /* KMI_ARCH_LOCK_H */
|