syscalltab.c 391 B

12345678910111213141516171819
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * System call table for Hexagon
  4. *
  5. * Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
  6. */
  7. #include <linux/syscalls.h>
  8. #include <linux/signal.h>
  9. #include <linux/unistd.h>
  10. #include <asm/syscall.h>
  11. #undef __SYSCALL
  12. #define __SYSCALL(nr, call) [nr] = (call),
  13. void *sys_call_table[__NR_syscalls] = {
  14. #include <asm/unistd.h>
  15. };