diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-04-21 06:48:16 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-04-21 06:48:16 (GMT) |
commit | c9ab2e265a6304eba381bcb656ef816644ea1962 (patch) | |
tree | bd4815c1ec14bd597ca9a5ee9960f2fe46969fc0 | |
parent | 0e9f040eb22ce321d8dd9bfc888b904ddf4cb1c4 (diff) | |
download | hdf5-c9ab2e265a6304eba381bcb656ef816644ea1962.zip hdf5-c9ab2e265a6304eba381bcb656ef816644ea1962.tar.gz hdf5-c9ab2e265a6304eba381bcb656ef816644ea1962.tar.bz2 |
[svn-r10635] Purpose:
Code cleanup
Description:
Rearrange struct members to fit better on 64-bit machines.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Solaris 2.9 (shanti)
-rw-r--r-- | src/H5Gprivate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Gprivate.h b/src/H5Gprivate.h index bd40d8d..9c098ba 100644 --- a/src/H5Gprivate.h +++ b/src/H5Gprivate.h @@ -103,10 +103,10 @@ typedef union H5G_cache_t { */ typedef struct H5G_entry_t { hbool_t dirty; /*entry out-of-date? */ - size_t name_off; /*offset of name within name heap */ - haddr_t header; /*file address of object header */ H5G_type_t type; /*type of information cached */ H5G_cache_t cache; /*cached data from object header */ + size_t name_off; /*offset of name within name heap */ + haddr_t header; /*file address of object header */ H5F_t *file; /*file to which this obj hdr belongs */ H5RS_str_t *user_path_r; /* Path to object, as opened by user */ H5RS_str_t *canon_path_r; /* Path to object, as found in file */ |