proto.h 509 B

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