blob: 213fd6ab789d5954f5bbf3bc738745df36f8c6eb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* System call table for x86-64. */
2
3#include <linux/linkage.h>
4#include <linux/sys.h>
5#include <linux/cache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
7#define __NO_STUBS
8
9#define __SYSCALL(nr, sym) extern asmlinkage void sym(void) ;
10#undef _ASM_X86_64_UNISTD_H_
11#include <asm-x86_64/unistd.h>
12
13#undef __SYSCALL
14#define __SYSCALL(nr, sym) [ nr ] = sym,
15#undef _ASM_X86_64_UNISTD_H_
16
17typedef void (*sys_call_ptr_t)(void);
18
19extern void sys_ni_syscall(void);
20
Arjan van de Venbb152f52006-01-06 00:12:05 -080021const sys_call_ptr_t sys_call_table[__NR_syscall_max+1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 /* 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>
25};