linux-stable/arch/x86/include/asm/trampoline.h
Al Viro bb8985586b x86, um: ... and asm-x86 move
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
2008-10-22 22:55:20 -07:00

21 lines
471 B
C

#ifndef ASM_X86__TRAMPOLINE_H
#define ASM_X86__TRAMPOLINE_H
#ifndef __ASSEMBLY__
/*
* Trampoline 80x86 program as an array.
*/
extern const unsigned char trampoline_data [];
extern const unsigned char trampoline_end [];
extern unsigned char *trampoline_base;
extern unsigned long init_rsp;
extern unsigned long initial_code;
#define TRAMPOLINE_BASE 0x6000
extern unsigned long setup_trampoline(void);
#endif /* __ASSEMBLY__ */
#endif /* ASM_X86__TRAMPOLINE_H */