Support for 32 bit ABI on 64 bit targets (only enabled Sparc64)
[qemu] / linux-user / flat.h
index 9b84c72..6f2d0c4 100644 (file)
 
 struct flat_hdr {
        char magic[4];
-       target_ulong rev;          /* version (as above) */
-       target_ulong entry;        /* Offset of first executable instruction
-                                      with text segment from beginning of file */
-       target_ulong data_start;   /* Offset of data segment from beginning of
-                                      file */
-       target_ulong data_end;     /* Offset of end of data segment
-                                      from beginning of file */
-       target_ulong bss_end;      /* Offset of end of bss segment from beginning
-                                      of file */
+       abi_ulong rev;          /* version (as above) */
+       abi_ulong entry;        /* Offset of first executable instruction
+                                   with text segment from beginning of file */
+       abi_ulong data_start;   /* Offset of data segment from beginning of
+                                   file */
+       abi_ulong data_end;     /* Offset of end of data segment
+                                   from beginning of file */
+       abi_ulong bss_end;      /* Offset of end of bss segment from beginning
+                                   of file */
 
        /* (It is assumed that data_end through bss_end forms the bss segment.) */
 
-       target_ulong stack_size;   /* Size of stack, in bytes */
-       target_ulong reloc_start;  /* Offset of relocation records from
-                                      beginning of file */
-       target_ulong reloc_count;  /* Number of relocation records */
-       target_ulong flags;
-       target_ulong build_date;   /* When the program/library was built */
-       target_ulong filler[5];    /* Reservered, set to zero */
+       abi_ulong stack_size;   /* Size of stack, in bytes */
+       abi_ulong reloc_start;  /* Offset of relocation records from
+                                   beginning of file */
+       abi_ulong reloc_count;  /* Number of relocation records */
+       abi_ulong flags;
+       abi_ulong build_date;   /* When the program/library was built */
+       abi_ulong filler[5];    /* Reservered, set to zero */
 };
 
 #define FLAT_FLAG_RAM    0x0001 /* load program entirely into RAM */