summaryrefslogtreecommitdiff
path: root/syscall-i386.h
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2003-03-29 17:22:23 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2003-03-29 17:22:23 +0000
commit7854b05654b49c2197faef358e3ec1a7559797b9 (patch)
treeb22d317708a3d405af48af599346d7bf536ce179 /syscall-i386.h
parent500dab07e88b471f4ab4cb69330a5c6738182de4 (diff)
downloadqemu-7854b05654b49c2197faef358e3ec1a7559797b9.tar.gz
endian fixes by Ulrich weigand
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@64 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'syscall-i386.h')
-rw-r--r--syscall-i386.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/syscall-i386.h b/syscall-i386.h
index dc769b7edf..847404fe1e 100644
--- a/syscall-i386.h
+++ b/syscall-i386.h
@@ -285,11 +285,11 @@ struct target_stat {
target_ulong st_size;
target_ulong st_blksize;
target_ulong st_blocks;
- target_ulong st_atime;
+ target_ulong target_st_atime;
target_ulong __unused1;
- target_ulong st_mtime;
+ target_ulong target_st_mtime;
target_ulong __unused2;
- target_ulong st_ctime;
+ target_ulong target_st_ctime;
target_ulong __unused3;
target_ulong __unused4;
target_ulong __unused5;
@@ -320,13 +320,13 @@ struct target_stat64 {
target_ulong st_blocks; /* Number 512-byte blocks allocated. */
target_ulong __pad4; /* future possible st_blocks high bits */
- target_ulong st_atime;
+ target_ulong target_st_atime;
target_ulong __pad5;
- target_ulong st_mtime;
+ target_ulong target_st_mtime;
target_ulong __pad6;
- target_ulong st_ctime;
+ target_ulong target_st_ctime;
target_ulong __pad7; /* will be high 32 bits of ctime someday */
unsigned long long st_ino;