Merge branch 'merge' of git://git.kernel.org/pub/scm/linux/kernel/git/jk/spufs into...
[deliverable/linux.git] / arch / x86 / include / asm / proto.h
CommitLineData
1965aae3
PA
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
1965aae3 32#endif /* _ASM_X86_PROTO_H */
This page took 0.407948 seconds and 5 git commands to generate.