diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2007-10-11 05:15:22 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2007-10-11 05:15:22 -0400 |
commit | f328f81b54ecc19d2d13710dca01e5f01f1ff449 (patch) | |
tree | c0e01f2eac99c93d7fda12a02faa549eb63d3f2d /arch/x86_64/kernel/syscall.c | |
parent | 6e04c835f1b9f1adde05b7439eaa1a4fff9ce8c7 (diff) |
x86_64: prepare shared kernel/syscall.c
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86_64/kernel/syscall.c')
-rw-r--r-- | arch/x86_64/kernel/syscall.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/arch/x86_64/kernel/syscall.c b/arch/x86_64/kernel/syscall.c deleted file mode 100644 index 63d592c276cc..000000000000 --- a/arch/x86_64/kernel/syscall.c +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | /* System call table for x86-64. */ | ||
2 | |||
3 | #include <linux/linkage.h> | ||
4 | #include <linux/sys.h> | ||
5 | #include <linux/cache.h> | ||
6 | #include <asm/asm-offsets.h> | ||
7 | |||
8 | #define __NO_STUBS | ||
9 | |||
10 | #define __SYSCALL(nr, sym) extern asmlinkage void sym(void) ; | ||
11 | #undef _ASM_X86_64_UNISTD_H_ | ||
12 | #include <asm-x86_64/unistd.h> | ||
13 | |||
14 | #undef __SYSCALL | ||
15 | #define __SYSCALL(nr, sym) [ nr ] = sym, | ||
16 | #undef _ASM_X86_64_UNISTD_H_ | ||
17 | |||
18 | typedef void (*sys_call_ptr_t)(void); | ||
19 | |||
20 | extern void sys_ni_syscall(void); | ||
21 | |||
22 | const sys_call_ptr_t sys_call_table[__NR_syscall_max+1] = { | ||
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> | ||
26 | }; | ||