diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-01-19 17:31:41 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-01-19 17:31:41 (GMT) |
commit | d4909147e16628c04ce64e272503f96030f1df30 (patch) | |
tree | dcffc28e2f1155bc99345ef390a6999821aa94c5 /src/H5Spkg.h | |
parent | 46598f35cafc38ff166783e57d5622f4a1a3153e (diff) | |
download | hdf5-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/H5Spkg.h')
-rw-r--r-- | src/H5Spkg.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/H5Spkg.h b/src/H5Spkg.h index c9b413e..4c225dc 100644 --- a/src/H5Spkg.h +++ b/src/H5Spkg.h @@ -38,13 +38,14 @@ */ /* Extent container */ struct H5S_extent_t { - H5S_class_t type; /* Type of extent */ - hsize_t nelem; /* Number of elements in extent */ + H5O_shared_t sh_loc; /* Shared message info (must be first) */ - unsigned rank; /* Number of dimensions */ - hsize_t *size; /* Current size of the dimensions */ - hsize_t *max; /* Maximum size of the dimensions */ - H5O_shared_t sh_loc; /* location of this message if shared */ + H5S_class_t type; /* Type of extent */ + hsize_t nelem; /* Number of elements in extent */ + + unsigned rank; /* Number of dimensions */ + hsize_t *size; /* Current size of the dimensions */ + hsize_t *max; /* Maximum size of the dimensions */ }; /* |