Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.5 24 lines 518 B view raw
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 syscall_init(void); 9 10void entry_SYSCALL_64(void); 11void entry_SYSCALL_compat(void); 12void entry_INT80_32(void); 13void entry_INT80_compat(void); 14void entry_SYSENTER_32(void); 15void entry_SYSENTER_compat(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 */