2008-02-19 20:02:16 +00:00
|
|
|
/* System call table for x86-64. */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#include <linux/linkage.h>
|
|
|
|
#include <linux/sys.h>
|
|
|
|
#include <linux/cache.h>
|
2007-05-02 17:27:18 +00:00
|
|
|
#include <asm/asm-offsets.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#define __NO_STUBS
|
|
|
|
|
2008-02-19 20:02:16 +00:00
|
|
|
#define __SYSCALL(nr, sym) extern asmlinkage void sym(void) ;
|
2005-04-16 22:20:36 +00:00
|
|
|
#undef _ASM_X86_64_UNISTD_H_
|
2007-10-11 09:20:03 +00:00
|
|
|
#include <asm/unistd_64.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#undef __SYSCALL
|
2008-02-19 20:02:16 +00:00
|
|
|
#define __SYSCALL(nr, sym) [nr] = sym,
|
2005-04-16 22:20:36 +00:00
|
|
|
#undef _ASM_X86_64_UNISTD_H_
|
|
|
|
|
2008-02-19 20:02:16 +00:00
|
|
|
typedef void (*sys_call_ptr_t)(void);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
extern void sys_ni_syscall(void);
|
|
|
|
|
2006-01-06 08:12:05 +00:00
|
|
|
const sys_call_ptr_t sys_call_table[__NR_syscall_max+1] = {
|
2008-02-19 20:02:16 +00:00
|
|
|
/*
|
|
|
|
*Smells like a like a compiler bug -- it doesn't work
|
|
|
|
*when the & below is removed.
|
|
|
|
*/
|
2005-04-16 22:20:36 +00:00
|
|
|
[0 ... __NR_syscall_max] = &sys_ni_syscall,
|
2007-10-11 09:20:03 +00:00
|
|
|
#include <asm/unistd_64.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|