syscall_32.c 947 B

123456789101112131415161718192021222324252627282930
  1. /* System call table for i386. */
  2. #include <linux/linkage.h>
  3. #include <linux/sys.h>
  4. #include <linux/cache.h>
  5. #include <asm/asm-offsets.h>
  6. #include <asm/syscall.h>
  7. #ifdef CONFIG_IA32_EMULATION
  8. #define SYM(sym, compat) compat
  9. #else
  10. #define SYM(sym, compat) sym
  11. #endif
  12. #define __SYSCALL_I386(nr, sym, compat) extern asmlinkage long SYM(sym, compat)(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long, unsigned long) ;
  13. #include <asm/syscalls_32.h>
  14. #undef __SYSCALL_I386
  15. #define __SYSCALL_I386(nr, sym, compat) [nr] = SYM(sym, compat),
  16. extern asmlinkage long sys_ni_syscall(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long, unsigned long);
  17. __visible const sys_call_ptr_t ia32_sys_call_table[__NR_syscall_compat_max+1] = {
  18. /*
  19. * Smells like a compiler bug -- it doesn't work
  20. * when the & below is removed.
  21. */
  22. [0 ... __NR_syscall_compat_max] = &sys_ni_syscall,
  23. #include <asm/syscalls_32.h>
  24. };