summaryrefslogtreecommitdiffstats
path: root/src/H5Tpkg.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-01-19 17:31:41 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-01-19 17:31:41 (GMT)
commitd4909147e16628c04ce64e272503f96030f1df30 (patch)
treedcffc28e2f1155bc99345ef390a6999821aa94c5 /src/H5Tpkg.h
parent46598f35cafc38ff166783e57d5622f4a1a3153e (diff)
downloadhdf5-d4909147e16628c04ce64e272503f96030f1df30.zip
hdf5-d4909147e16628c04ce64e272503f96030f1df30.tar.gz
hdf5-d4909147e16628c04ce64e272503f96030f1df30.tar.bz2
[svn-r13156] Description:
Begin refactoring code to straighten out the contorted code that handles shared messages. Tested on: Linux/32 2.6 (chicago) Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5Tpkg.h')
-rw-r--r--src/H5Tpkg.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/H5Tpkg.h b/src/H5Tpkg.h
index 14f77cf..9232196 100644
--- a/src/H5Tpkg.h
+++ b/src/H5Tpkg.h
@@ -326,9 +326,10 @@ typedef struct H5T_shared_t {
} H5T_shared_t;
struct H5T_t {
- H5T_shared_t *shared; /* all other information */
- H5G_name_t path; /* group hier. path if the type is a named type */
- H5O_shared_t sh_loc; /* shared object message if this is a shared type*/
+ H5O_shared_t sh_loc; /* Shared message info (must be first) */
+
+ H5T_shared_t *shared; /* all other information */
+ H5G_name_t path; /* group hier. path if the type is a named type */
};
/* A compound datatype member */