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 v2.6.27 32 lines 693 B view raw
1#ifndef _ASM_X8664_PROTO_H 2#define _ASM_X8664_PROTO_H 1 3 4#include <asm/ldt.h> 5 6/* misc architecture specific prototypes */ 7 8extern void early_idt_handler(void); 9 10extern void system_call(void); 11extern void syscall_init(void); 12 13extern void ia32_syscall(void); 14extern void ia32_cstar_target(void); 15extern void ia32_sysenter_target(void); 16 17extern void syscall32_cpu_init(void); 18 19extern void check_efer(void); 20 21#ifdef CONFIG_X86_BIOS_REBOOT 22extern int reboot_force; 23#else 24static const int reboot_force = 0; 25#endif 26 27long do_arch_prctl(struct task_struct *task, int code, unsigned long addr); 28 29#define round_up(x, y) (((x) + (y) - 1) & ~((y) - 1)) 30#define round_down(x, y) ((x) & ~((y) - 1)) 31 32#endif