summaryrefslogtreecommitdiffstats
path: root/src/H5Oprivate.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/H5Oprivate.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/H5Oprivate.h')
-rw-r--r--src/H5Oprivate.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/H5Oprivate.h b/src/H5Oprivate.h
index 1076441..c978b8c 100644
--- a/src/H5Oprivate.h
+++ b/src/H5Oprivate.h
@@ -198,13 +198,14 @@ typedef struct H5O_fill_t {
*/
typedef struct H5O_fill_new_t {
+ H5O_shared_t sh_loc; /* Shared message info (must be first) */
+
H5T_t *type; /*type. Null implies same as dataset */
ssize_t size; /*number of bytes in the fill value */
void *buf; /*the fill value */
H5D_alloc_time_t alloc_time; /* time to allocate space */
H5D_fill_time_t fill_time; /* time to write fill value */
hbool_t fill_defined; /* whether fill value is defined */
- H5O_shared_t sh_loc; /*location of shared message */
} H5O_fill_new_t;
/*
@@ -336,10 +337,11 @@ typedef struct H5O_ginfo_t {
* (Data structure in memory)
*/
typedef struct H5O_pline_t {
+ H5O_shared_t sh_loc; /* Shared message info (must be first) */
+
size_t nalloc; /*num elements in `filter' array */
size_t nused; /*num filters defined */
H5Z_filter_info_t *filter; /*array of filters */
- H5O_shared_t sh_loc; /*location of shared message */
} H5O_pline_t;
/*