Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / x86_64 / kernel / syscall.c
blobe263685f864cac46228a7585d2ef9f3a9584a01e
1 /* System call table for x86-64. */
3 #include <linux/linkage.h>
4 #include <linux/sys.h>
5 #include <linux/cache.h>
6 #include <linux/config.h>
8 #define __NO_STUBS
10 #define __SYSCALL(nr, sym) extern asmlinkage void sym(void) ;
11 #undef _ASM_X86_64_UNISTD_H_
12 #include <asm-x86_64/unistd.h>
14 #undef __SYSCALL
15 #define __SYSCALL(nr, sym) [ nr ] = sym,
16 #undef _ASM_X86_64_UNISTD_H_
18 typedef void (*sys_call_ptr_t)(void);
20 extern void sys_ni_syscall(void);
22 sys_call_ptr_t sys_call_table[__NR_syscall_max+1] __cacheline_aligned = {
23 /* Smells like a like a compiler bug -- it doesn't work when the & below is removed. */
24 [0 ... __NR_syscall_max] = &sys_ni_syscall,
25 #include <asm-x86_64/unistd.h>