Home | History | Annotate | Download | only in asm
      1 /****************************************************************************
      2  ****************************************************************************
      3  ***
      4  ***   This header was automatically generated from a Linux kernel header
      5  ***   of the same name, to make information necessary for userspace to
      6  ***   call into the kernel available to libc.  It contains only constants,
      7  ***   structures, and macros generated from the original header, and thus,
      8  ***   contains no copyrightable information.
      9  ***
     10  ****************************************************************************
     11  ****************************************************************************/
     12 #ifndef __ARM_A_OUT_H__
     13 #define __ARM_A_OUT_H__
     14 
     15 #include <linux/personality.h>
     16 #include <asm/types.h>
     17 
     18 struct exec
     19 {
     20  __u32 a_info;
     21  __u32 a_text;
     22  __u32 a_data;
     23  __u32 a_bss;
     24  __u32 a_syms;
     25  __u32 a_entry;
     26  __u32 a_trsize;
     27  __u32 a_drsize;
     28 };
     29 
     30 #define N_TXTADDR(a) (0x00008000)
     31 
     32 #define N_TRSIZE(a) ((a).a_trsize)
     33 #define N_DRSIZE(a) ((a).a_drsize)
     34 #define N_SYMSIZE(a) ((a).a_syms)
     35 
     36 #define M_ARM 103
     37 
     38 #ifndef LIBRARY_START_TEXT
     39 #define LIBRARY_START_TEXT (0x00c00000)
     40 #endif
     41 
     42 #endif
     43