diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-03-29 17:22:23 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-03-29 17:22:23 +0000 |
commit | 7854b05654b49c2197faef358e3ec1a7559797b9 (patch) | |
tree | b22d317708a3d405af48af599346d7bf536ce179 /syscall-i386.h | |
parent | 500dab07e88b471f4ab4cb69330a5c6738182de4 (diff) |
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.h | 12 |
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; |