rename io_apic_64.c and io_apic_32.c to io_apic.c
[deliverable/linux.git] / include / asm-x86 / proto.h
CommitLineData
77ef50a5
VN
1#ifndef ASM_X86__PROTO_H
2#define ASM_X86__PROTO_H
1da177e4
LT
3
4#include <asm/ldt.h>
5
6/* misc architecture specific prototypes */
7
1da177e4
LT
8extern void early_idt_handler(void);
9
84c873ed 10extern void system_call(void);
1da177e4
LT
11extern void syscall_init(void);
12
13extern void ia32_syscall(void);
84c873ed
TG
14extern void ia32_cstar_target(void);
15extern void ia32_sysenter_target(void);
1da177e4 16
1da177e4
LT
17extern void syscall32_cpu_init(void);
18
1da177e4
LT
19extern void check_efer(void);
20
3e8f7e35 21#ifdef CONFIG_X86_BIOS_REBOOT
1da177e4 22extern int reboot_force;
3e8f7e35
IM
23#else
24static const int reboot_force = 0;
25#endif
1da177e4 26
1da177e4
LT
27long do_arch_prctl(struct task_struct *task, int code, unsigned long addr);
28
708c5662
JP
29#define round_up(x, y) (((x) + (y) - 1) & ~((y) - 1))
30#define round_down(x, y) ((x) & ~((y) - 1))
1da177e4 31
77ef50a5 32#endif /* ASM_X86__PROTO_H */
This page took 0.424743 seconds and 5 git commands to generate.