sys_call_table.S 370 B

1234567891011121314
  1. #include <linux/linkage.h>
  2. /* Steal i386 syscall table for our purposes, but with some slight changes.*/
  3. #define sys_iopl sys_ni_syscall
  4. #define sys_ioperm sys_ni_syscall
  5. #define sys_vm86old sys_ni_syscall
  6. #define sys_vm86 sys_ni_syscall
  7. #define sys_stime um_stime
  8. #define sys_time um_time
  9. #define old_mmap old_mmap_i386
  10. #include "../../i386/kernel/syscall_table.S"