proto.h 744 B

1234567891011121314151617181920212223242526272829303132333435
  1. #ifndef _ASM_X86_PROTO_H
  2. #define _ASM_X86_PROTO_H
  3. #include <asm/ldt.h>
  4. /* misc architecture specific prototypes */
  5. void syscall_init(void);
  6. #ifdef CONFIG_X86_64
  7. void entry_SYSCALL_64(void);
  8. #endif
  9. #ifdef CONFIG_X86_32
  10. void entry_INT80_32(void);
  11. void entry_SYSENTER_32(void);
  12. void __begin_SYSENTER_singlestep_region(void);
  13. void __end_SYSENTER_singlestep_region(void);
  14. #endif
  15. #ifdef CONFIG_IA32_EMULATION
  16. void entry_SYSENTER_compat(void);
  17. void __end_entry_SYSENTER_compat(void);
  18. void entry_SYSCALL_compat(void);
  19. void entry_INT80_compat(void);
  20. #endif
  21. void x86_configure_nx(void);
  22. void x86_report_nx(void);
  23. extern int reboot_force;
  24. long do_arch_prctl(struct task_struct *task, int code, unsigned long addr);
  25. #endif /* _ASM_X86_PROTO_H */