diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-06 18:54:24 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-06 18:54:24 (GMT) |
commit | 492df7a33ca592cfd24a4ec31cda12b887df3241 (patch) | |
tree | 23fe295d0ed1a9141e591e18d04ee0b3ccb246cc /src/H5Opublic.h | |
parent | f25328a15af33de7f804728776ec407ca4393b25 (diff) | |
download | hdf5-492df7a33ca592cfd24a4ec31cda12b887df3241.zip hdf5-492df7a33ca592cfd24a4ec31cda12b887df3241.tar.gz hdf5-492df7a33ca592cfd24a4ec31cda12b887df3241.tar.bz2 |
[svn-r13470] Description:
Avoid storing the phase change values for attribute storage, unless
they are non-default values.
Tested on:
Mac OS X/32 10.4.8 (amazon)
Diffstat (limited to 'src/H5Opublic.h')
-rw-r--r-- | src/H5Opublic.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5Opublic.h b/src/H5Opublic.h index 0e64a93..73c4581 100644 --- a/src/H5Opublic.h +++ b/src/H5Opublic.h @@ -63,7 +63,8 @@ /* Object header status flag definitions */ #define H5O_HDR_ATTR_CRT_ORDER_TRACKED 0x01 /* Attribute creation order is tracked */ #define H5O_HDR_ATTR_CRT_ORDER_INDEXED 0x02 /* Attribute creation order has index */ -#define H5O_HDR_STORE_TIMES 0x04 /* Store access, modification, change & birth times for object */ +#define H5O_HDR_ATTR_STORE_PHASE_CHANGE 0x04 /* Non-default attribute storage phase change values stored */ +#define H5O_HDR_STORE_TIMES 0x08 /* Store access, modification, change & birth times for object */ /* Maximum shared message values. Number of indexes is 8 to allow room to add * new types of messages. |