linux/arch/x86/include/asm/proto.h
<<
>>
Prefs
   1#ifndef _ASM_X86_PROTO_H
   2#define _ASM_X86_PROTO_H
   3
   4#include <asm/ldt.h>
   5
   6/* misc architecture specific prototypes */
   7
   8void system_call(void);
   9void syscall_init(void);
  10
  11void ia32_syscall(void);
  12void ia32_cstar_target(void);
  13void ia32_sysenter_target(void);
  14
  15void syscall32_cpu_init(void);
  16
  17void x86_configure_nx(void);
  18void x86_report_nx(void);
  19
  20extern int reboot_force;
  21
  22long do_arch_prctl(struct task_struct *task, int code, unsigned long addr);
  23
  24#endif /* _ASM_X86_PROTO_H */
  25