proto.h 478 B

123456789101112131415161718192021222324
  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 syscall32_cpu_init(void);
  11. void x86_configure_nx(void);
  12. void x86_report_nx(void);
  13. extern int reboot_force;
  14. long do_arch_prctl(struct task_struct *task, int code, unsigned long addr);
  15. #endif /* _ASM_X86_PROTO_H */