1 /* System call table for x86-64. */
3 #include <linux/linkage.h>
5 #include <linux/cache.h>
9 #define __SYSCALL(nr, sym) extern asmlinkage void sym(void) ;
10 #undef _ASM_X86_64_UNISTD_H_
11 #include <asm-x86_64/unistd.h>
14 #define __SYSCALL(nr, sym) [ nr ] = sym,
15 #undef _ASM_X86_64_UNISTD_H_
17 typedef void (*sys_call_ptr_t)(void);
19 extern void sys_ni_syscall(void);
21 const sys_call_ptr_t sys_call_table[__NR_syscall_max+1] = {
22 /* Smells like a like a compiler bug -- it doesn't work when the & below is removed. */
23 [0 ... __NR_syscall_max] = &sys_ni_syscall,
24 #include <asm-x86_64/unistd.h>