a.out.h 799 B

1234567891011121314151617181920212223242526272829303132333435
  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. * Modified 1998-2002
  10. * David Mosberger-Tang <davidm@hpl.hp.com>, Hewlett-Packard Co.
  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/ustack.h>
  29. #endif
  30. #endif /* _ASM_IA64_A_OUT_H */