diff options
Diffstat (limited to 'linux-user/flat.h')
-rw-r--r-- | linux-user/flat.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/linux-user/flat.h b/linux-user/flat.h index 9b84c72922..6f2d0c4b2d 100644 --- a/linux-user/flat.h +++ b/linux-user/flat.h @@ -22,25 +22,25 @@ 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 */ |