2011-11-12 08:07:41 +08:00
|
|
|
/* System call table for i386. */
|
|
|
|
|
|
|
|
#include <linux/linkage.h>
|
|
|
|
#include <linux/sys.h>
|
|
|
|
#include <linux/cache.h>
|
|
|
|
#include <asm/asm-offsets.h>
|
2015-10-06 08:48:06 +08:00
|
|
|
#include <asm/syscall.h>
|
2011-11-12 08:07:41 +08:00
|
|
|
|
2016-01-29 07:11:23 +08:00
|
|
|
#define __SYSCALL_I386(nr, sym) extern asmlinkage long sym(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long, unsigned long) ;
|
2011-11-12 08:07:41 +08:00
|
|
|
#include <asm/syscalls_32.h>
|
|
|
|
#undef __SYSCALL_I386
|
|
|
|
|
2016-01-29 07:11:23 +08:00
|
|
|
#define __SYSCALL_I386(nr, sym) [nr] = sym,
|
2011-11-12 08:07:41 +08:00
|
|
|
|
2015-10-06 08:48:07 +08:00
|
|
|
extern asmlinkage long sys_ni_syscall(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long, unsigned long);
|
2011-11-12 08:07:41 +08:00
|
|
|
|
2015-06-09 03:20:26 +08:00
|
|
|
__visible const sys_call_ptr_t ia32_sys_call_table[__NR_syscall_compat_max+1] = {
|
2011-11-12 08:07:41 +08:00
|
|
|
/*
|
2011-11-19 08:25:07 +08:00
|
|
|
* Smells like a compiler bug -- it doesn't work
|
2011-11-12 08:07:41 +08:00
|
|
|
* when the & below is removed.
|
|
|
|
*/
|
2015-06-09 03:20:26 +08:00
|
|
|
[0 ... __NR_syscall_compat_max] = &sys_ni_syscall,
|
2011-11-12 08:07:41 +08:00
|
|
|
#include <asm/syscalls_32.h>
|
|
|
|
};
|