proto.h 446 B

12345678910111213141516171819202122
  1. #ifndef _ASM_X86_PROTO_H
  2. #define _ASM_X86_PROTO_H
  3. #include <asm/ldt.h>
  4. /* misc architecture specific prototypes */
  5. void system_call(void);
  6. void syscall_init(void);
  7. void ia32_syscall(void);
  8. void ia32_cstar_target(void);
  9. void ia32_sysenter_target(void);
  10. void x86_configure_nx(void);
  11. void x86_report_nx(void);
  12. extern int reboot_force;
  13. long do_arch_prctl(struct task_struct *task, int code, unsigned long addr);
  14. #endif /* _ASM_X86_PROTO_H */