syscall.h 689 B

12345678910111213141516171819202122232425262728
  1. /* syscall.h - automatically selects the correct syscall.h file to include */
  2. /*
  3. * Copyright (c) 1997-2014 Wind River Systems, Inc.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef ZEPHYR_INCLUDE_ARCH_SYSCALL_H_
  8. #define ZEPHYR_INCLUDE_ARCH_SYSCALL_H_
  9. #if defined(CONFIG_X86)
  10. #if defined(CONFIG_X86_64)
  11. #include <arch/x86/intel64/syscall.h>
  12. #else
  13. #include <arch/x86/ia32/syscall.h>
  14. #endif
  15. #elif defined(CONFIG_ARM64)
  16. #include <arch/arm64/syscall.h>
  17. #elif defined(CONFIG_ARM)
  18. #include <arch/arm/aarch32/syscall.h>
  19. #elif defined(CONFIG_ARC)
  20. #include <arch/arc/syscall.h>
  21. #elif defined(CONFIG_RISCV)
  22. #include <arch/riscv/syscall.h>
  23. #endif
  24. #endif /* ZEPHYR_INCLUDE_ARCH_SYSCALL_H_ */