home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / src / linux-headers-2.6.28-15 / arch / x86 / include / asm / trampoline.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-12-24  |  471 b   |  22 lines

  1. #ifndef _ASM_X86_TRAMPOLINE_H
  2. #define _ASM_X86_TRAMPOLINE_H
  3.  
  4. #ifndef __ASSEMBLY__
  5.  
  6. /*
  7.  * Trampoline 80x86 program as an array.
  8.  */
  9. extern const unsigned char trampoline_data [];
  10. extern const unsigned char trampoline_end  [];
  11. extern unsigned char *trampoline_base;
  12.  
  13. extern unsigned long init_rsp;
  14. extern unsigned long initial_code;
  15.  
  16. #define TRAMPOLINE_BASE 0x6000
  17. extern unsigned long setup_trampoline(void);
  18.  
  19. #endif /* __ASSEMBLY__ */
  20.  
  21. #endif /* _ASM_X86_TRAMPOLINE_H */
  22.