Zephyr API Documentation  2.7.0-rc2
A Scalable Open Source RTOS
syscall.h
Go to the documentation of this file.
1/* syscall.h - automatically selects the correct syscall.h file to include */
2
3/*
4 * Copyright (c) 1997-2014 Wind River Systems, Inc.
5 *
6 * SPDX-License-Identifier: Apache-2.0
7 */
8
9#ifndef ZEPHYR_INCLUDE_ARCH_SYSCALL_H_
10#define ZEPHYR_INCLUDE_ARCH_SYSCALL_H_
11
12#if defined(CONFIG_X86)
13#if defined(CONFIG_X86_64)
15#else
17#endif
18#elif defined(CONFIG_ARM64)
19#include <arch/arm64/syscall.h>
20#elif defined(CONFIG_ARM)
22#elif defined(CONFIG_ARC)
23#include <arch/arc/syscall.h>
24#elif defined(CONFIG_RISCV)
25#include <arch/riscv/syscall.h>
26#endif
27
28#endif /* ZEPHYR_INCLUDE_ARCH_SYSCALL_H_ */
ARC specific sycall header.
ARM64 specific syscall header.
ARM AArch32 specific syscall header.
RISCV specific syscall header.
x86 (IA32) specific sycall header
x86 (INTEL64) specific sycall header