Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluet...
[deliverable/linux.git] / include / asm-x86 / proto.h
CommitLineData
1da177e4
LT
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
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
LT
31
32#endif
This page took 0.472079 seconds and 5 git commands to generate.