syscall_32.c 813 B

12345678910111213141516171819202122232425
  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. #define __SYSCALL_I386(nr, sym, qual) extern asmlinkage long sym(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long, unsigned long) ;
  8. #include <asm/syscalls_32.h>
  9. #undef __SYSCALL_I386
  10. #define __SYSCALL_I386(nr, sym, qual) [nr] = sym,
  11. extern asmlinkage long sys_ni_syscall(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long, unsigned long);
  12. __visible const sys_call_ptr_t ia32_sys_call_table[__NR_syscall_compat_max+1] = {
  13. /*
  14. * Smells like a compiler bug -- it doesn't work
  15. * when the & below is removed.
  16. */
  17. [0 ... __NR_syscall_compat_max] = &sys_ni_syscall,
  18. #include <asm/syscalls_32.h>
  19. };