1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * This file contains the table of syscall-handling functions.
4 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
6 * Largely rewritten by Cort Dougan (cort@cs.nmt.edu)
9 * Adapted for iSeries by Mike Corrigan (mikejc@us.ibm.com)
10 * PPC64 updates by Dave Engebretsen (engebret@us.ibm.com)
13 #include <asm/ppc_asm.h>
24 #define __SYSCALL(nr, entry) .8byte DOTSYM(entry)
25 #include <asm/syscall_table_64.h>
28 #define __SYSCALL(nr, entry) .long entry
29 #include <asm/syscall_table_32.h>
34 .globl compat_sys_call_table
35 compat_sys_call_table:
36 #define compat_sys_sigsuspend sys_sigsuspend
37 #define __SYSCALL(nr, entry) .8byte DOTSYM(entry)
38 #include <asm/syscall_table_c32.h>