a.out.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _ASM_IA64_A_OUT_H
  2. #define _ASM_IA64_A_OUT_H
  3. /*
  4.  * No a.out format has been (or should be) defined so this file is
  5.  * just a dummy that allows us to get binfmt_elf compiled.  It
  6.  * probably would be better to clean up binfmt_elf.c so it does not
  7.  * necessarily depend on there being a.out support.
  8.  *
  9.  * Copyright (C) 1998-2000 Hewlett-Packard Co
  10.  * Copyright (C) 1998-2000 David Mosberger-Tang <davidm@hpl.hp.com>
  11.  */
  12. #include <linux/types.h>
  13. struct exec {
  14. unsigned long a_info;
  15. unsigned long a_text;
  16. unsigned long a_data;
  17. unsigned long a_bss;
  18. unsigned long a_entry;
  19. };
  20. #define N_TXTADDR(x) 0
  21. #define N_DATADDR(x) 0
  22. #define N_BSSADDR(x) 0
  23. #define N_DRSIZE(x) 0
  24. #define N_TRSIZE(x) 0
  25. #define N_SYMSIZE(x) 0
  26. #define N_TXTOFF(x) 0
  27. #ifdef __KERNEL__
  28. # include <asm/page.h>
  29. # define STACK_TOP (0x8000000000000000UL + (1UL << (4*PAGE_SHIFT - 12)) - PAGE_SIZE)
  30. # define IA64_RBS_BOT (STACK_TOP - 0x80000000L + PAGE_SIZE) /* bottom of reg. backing store */
  31. #endif
  32. #endif /* _ASM_IA64_A_OUT_H */