0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 #define __SYSCALL(nr, entry) .word entry
0014 .text
0015 .align 4
0016 #ifdef CONFIG_COMPAT
0017 .globl sys_call_table32
0018 sys_call_table32:
0019 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, compat)
0020 #include <asm/syscall_table_32.h> /* Compat syscalls */
0021 #undef __SYSCALL_WITH_COMPAT
0022 #endif
0023
0024 .align 4
0025 .globl sys_call_table64, sys_call_table
0026 sys_call_table64:
0027 sys_call_table:
0028 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native)
0029 #include <asm/syscall_table_64.h> /* 64-bit native syscalls */