Zephyr API Documentation  2.7.0-rc2
A Scalable Open Source RTOS
arch_inlines.h
Go to the documentation of this file.
1/*
2 * arch_inlines.h - automatically selects the correct arch_inlines.h file to
3 * include based on the selected architecture.
4 */
5
6/*
7 * Copyright (c) 2019 Stephanos Ioannidis <root@stephanos.io>
8 *
9 * SPDX-License-Identifier: Apache-2.0
10 */
11
12#ifndef ZEPHYR_INCLUDE_ARCH_INLINES_H_
13#define ZEPHYR_INCLUDE_ARCH_INLINES_H_
14
15#if defined(CONFIG_X86) || defined(CONFIG_X86_64)
17#elif defined(CONFIG_ARM64)
19#elif defined(CONFIG_ARC)
21#elif defined(CONFIG_XTENSA)
23#endif
24
25#endif /* ZEPHYR_INCLUDE_ARCH_INLINES_H_ */