a.out.h 625 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * include/asm-xtensa/a.out.h
  3. *
  4. * Dummy a.out file. Xtensa does not support the a.out format, but the kernel
  5. * seems to depend on it.
  6. *
  7. * This file is subject to the terms and conditions of the GNU General Public
  8. * License. See the file "COPYING" in the main directory of this archive
  9. * for more details.
  10. *
  11. * Copyright (C) 2001 - 2005 Tensilica Inc.
  12. */
  13. #ifndef _XTENSA_A_OUT_H
  14. #define _XTENSA_A_OUT_H
  15. struct exec
  16. {
  17. unsigned long a_info;
  18. unsigned a_text;
  19. unsigned a_data;
  20. unsigned a_bss;
  21. unsigned a_syms;
  22. unsigned a_entry;
  23. unsigned a_trsize;
  24. unsigned a_drsize;
  25. };
  26. #endif /* _XTENSA_A_OUT_H */