Merge tag 'media/v4.5-5' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab...
[deliverable/linux.git] / arch / x86 / entry / syscall_32.c
CommitLineData
303395ac
PA
1/* System call table for i386. */
2
3#include <linux/linkage.h>
4#include <linux/sys.h>
5#include <linux/cache.h>
6#include <asm/asm-offsets.h>
034042cc 7#include <asm/syscall.h>
303395ac 8
2aa4a710
BG
9#ifdef CONFIG_IA32_EMULATION
10#define SYM(sym, compat) compat
11#else
12#define SYM(sym, compat) sym
2aa4a710
BG
13#endif
14
eb974c62 15#define __SYSCALL_I386(nr, sym, compat) extern asmlinkage long SYM(sym, compat)(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long, unsigned long) ;
303395ac
PA
16#include <asm/syscalls_32.h>
17#undef __SYSCALL_I386
18
2aa4a710 19#define __SYSCALL_I386(nr, sym, compat) [nr] = SYM(sym, compat),
303395ac 20
eb974c62 21extern asmlinkage long sys_ni_syscall(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long, unsigned long);
303395ac 22
bace7117 23__visible const sys_call_ptr_t ia32_sys_call_table[__NR_syscall_compat_max+1] = {
303395ac 24 /*
61f1e7e2 25 * Smells like a compiler bug -- it doesn't work
303395ac
PA
26 * when the & below is removed.
27 */
bace7117 28 [0 ... __NR_syscall_compat_max] = &sys_ni_syscall,
303395ac
PA
29#include <asm/syscalls_32.h>
30};
This page took 0.217379 seconds and 5 git commands to generate.