diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-09-09 23:35:22 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-09-09 23:35:22 +0000 |
commit | 707b3ee068a1324b708f6dd707cc156a0b8de371 (patch) | |
tree | 0bcf8497d8eea49495db6fcd8ab28a5fd596b0ef /linux-user/syscall_defs.h | |
parent | 78600320a8571f4b065a7ea9331e1290d319acbb (diff) |
ARM 64-bit host fix.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2155 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user/syscall_defs.h')
-rw-r--r-- | linux-user/syscall_defs.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h index 73a5c4250d..015f3ba248 100644 --- a/linux-user/syscall_defs.h +++ b/linux-user/syscall_defs.h @@ -938,29 +938,29 @@ struct target_stat64 { struct target_eabi_stat64 { unsigned long long st_dev; unsigned int __pad1; - unsigned long __st_ino; + target_ulong __st_ino; unsigned int st_mode; unsigned int st_nlink; - unsigned long st_uid; - unsigned long st_gid; + target_ulong st_uid; + target_ulong st_gid; unsigned long long st_rdev; unsigned int __pad2[2]; long long st_size; - unsigned long st_blksize; + target_ulong st_blksize; unsigned int __pad3; unsigned long long st_blocks; - unsigned long target_st_atime; - unsigned long target_st_atime_nsec; + target_ulong target_st_atime; + target_ulong target_st_atime_nsec; - unsigned long target_st_mtime; - unsigned long target_st_mtime_nsec; + target_ulong target_st_mtime; + target_ulong target_st_mtime_nsec; - unsigned long target_st_ctime; - unsigned long target_st_ctime_nsec; + target_ulong target_st_ctime; + target_ulong target_st_ctime_nsec; unsigned long long st_ino; } __attribute__ ((packed)); |