summary refs log tree commit diff stats
path: root/linux-user/flat.h
diff options
context:
space:
mode:
authorpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2006-10-21 23:43:02 +0000
committerpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2006-10-21 23:43:02 +0000
commit223b8a40d13550ebc08216bd96d1f615597e0554 (patch)
tree96d301dfdc95e44eb971a110dafb51d7c553d23e /linux-user/flat.h
parent1f9519c92decd438d04639bdceb34bde2a1de678 (diff)
downloadfocaccia-qemu-223b8a40d13550ebc08216bd96d1f615597e0554.tar.gz
focaccia-qemu-223b8a40d13550ebc08216bd96d1f615597e0554.zip
bFLT 64-bit host fix.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2195 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user/flat.h')
-rw-r--r--linux-user/flat.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/linux-user/flat.h b/linux-user/flat.h
index b057b140e9..6d52b1ffe9 100644
--- a/linux-user/flat.h
+++ b/linux-user/flat.h
@@ -22,25 +22,25 @@
 
 struct flat_hdr {
 	char magic[4];
-	unsigned long rev;          /* version (as above) */
-	unsigned long entry;        /* Offset of first executable instruction
+	target_ulong rev;          /* version (as above) */
+	target_ulong entry;        /* Offset of first executable instruction
 	                               with text segment from beginning of file */
-	unsigned long data_start;   /* Offset of data segment from beginning of
+	target_ulong data_start;   /* Offset of data segment from beginning of
 	                               file */
-	unsigned long data_end;     /* Offset of end of data segment
+	target_ulong data_end;     /* Offset of end of data segment
 	                               from beginning of file */
-	unsigned long bss_end;      /* Offset of end of bss segment from beginning
+	target_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.) */
 
-	unsigned long stack_size;   /* Size of stack, in bytes */
-	unsigned long reloc_start;  /* Offset of relocation records from
+	target_ulong stack_size;   /* Size of stack, in bytes */
+	target_ulong reloc_start;  /* Offset of relocation records from
 	                               beginning of file */
-	unsigned long reloc_count;  /* Number of relocation records */
-	unsigned long flags;       
-	unsigned long build_date;   /* When the program/library was built */
-	unsigned long filler[5];    /* Reservered, set to zero */
+	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 */
 };
 
 #define FLAT_FLAG_RAM    0x0001 /* load program entirely into RAM */