summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Lim <ktlim@umich.edu>2006-03-04 15:23:06 -0500
committerKevin Lim <ktlim@umich.edu>2006-03-04 15:23:06 -0500
commit7ded9532d563146e1acdb21b7ba99709885b4177 (patch)
tree398be86c7b13bf64647545eff24a38685b6ce0bf
parent5790e295a93e9aecd17696fc35106dccff094cfb (diff)
parent41b8b41b9cdc12ff3939ca1e4b7a6fe99e60b6dc (diff)
downloadgem5-7ded9532d563146e1acdb21b7ba99709885b4177.tar.xz
Merge ktlim@zizzer:/bk/m5
into zizzer.eecs.umich.edu:/.automount/zamp/z/ktlim2/m5-shadowregs --HG-- extra : convert_revision : 570b1c4331075587a866dfada7fbe51805cdcad4
-rw-r--r--kern/tru64/tru64.hh5
1 files changed, 3 insertions, 2 deletions
diff --git a/kern/tru64/tru64.hh b/kern/tru64/tru64.hh
index ad568cb0c..9c541ae1a 100644
--- a/kern/tru64/tru64.hh
+++ b/kern/tru64/tru64.hh
@@ -155,15 +155,16 @@ class Tru64 {
/// implementing another set of stat functions using the old
/// structure definition and binding them to the old syscall
/// numbers.
+
struct pre_F64_stat {
dev_t st_dev;
ino_t st_ino;
mode_t st_mode;
nlink_t st_nlink;
- uid_t st_uid;
+ uid_t st_uid __attribute__ ((aligned(sizeof(uid_t))));
gid_t st_gid;
dev_t st_rdev;
- off_t st_size;
+ off_t st_size __attribute__ ((aligned(sizeof(off_t))));
time_t st_atimeX;
int32_t st_uatime;
time_t st_mtimeX;