diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-07-24 21:43:59 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-07-24 21:43:59 (GMT) |
commit | 712c226038212283ffeefad494538d30cf767eef (patch) | |
tree | ae197744810ab7d438f00d5bc69a9f320a5ed2e0 /src/H5Spkg.h | |
parent | decf1830efac293971cf7119c15fc1c9993263e9 (diff) | |
download | hdf5-712c226038212283ffeefad494538d30cf767eef.zip hdf5-712c226038212283ffeefad494538d30cf767eef.tar.gz hdf5-712c226038212283ffeefad494538d30cf767eef.tar.bz2 |
[svn-r14010] Description:
Fix problem with dataspace messages where the version of the format
for a dataspace message could depend on the "use the latest format" flag from
the file after it was initially created.
Also, move debuging routine into separate file.
Tested on:
FreeBSD/32 6.2 (duty)
FreeBSD/64 6.2 (liberty)
Linux/32 2.6 (kagiso)
Mac OS X/32 10.4.10 (amazon)
Solaris/32 2.10 (linew)
Diffstat (limited to 'src/H5Spkg.h')
-rw-r--r-- | src/H5Spkg.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/H5Spkg.h b/src/H5Spkg.h index 907b6fd..8dc2991 100644 --- a/src/H5Spkg.h +++ b/src/H5Spkg.h @@ -34,6 +34,21 @@ #define H5S_VALID_MAX 0x01 #define H5S_VALID_PERM 0x02 + +/* Initial version of the dataspace information */ +#define H5O_SDSPACE_VERSION_1 1 + +/* This version adds support for "null" dataspaces, encodes the type of the + * dataspace in the message and eliminated the rest of the "reserved" + * bytes. + */ +#define H5O_SDSPACE_VERSION_2 2 + +/* The latest version of the format. Look through the 'encode' + * and 'size' callbacks for places to change when updating this. */ +#define H5O_SDSPACE_VERSION_LATEST H5O_SDSPACE_VERSION_2 + + /* * Dataspace extent information */ @@ -42,6 +57,7 @@ struct H5S_extent_t { H5O_shared_t sh_loc; /* Shared message info (must be first) */ H5S_class_t type; /* Type of extent */ + unsigned version; /* Version of object header message to encode this object with */ hsize_t nelem; /* Number of elements in extent */ unsigned rank; /* Number of dimensions */ |