summaryrefslogtreecommitdiffstats
path: root/src/H5Ofill.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-01-29 18:19:05 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-01-29 18:19:05 (GMT)
commit108114495fccaafcf77904f43e9c4cb90c4396f8 (patch)
treed7f57e606afd74369845ada2ddfa63d7343d92f8 /src/H5Ofill.c
parent55d4ec6ebf2f9f8037b33a39bc62bf93232771d8 (diff)
downloadhdf5-108114495fccaafcf77904f43e9c4cb90c4396f8.zip
hdf5-108114495fccaafcf77904f43e9c4cb90c4396f8.tar.gz
hdf5-108114495fccaafcf77904f43e9c4cb90c4396f8.tar.bz2
[svn-r13217] Description:
Move fill value messages into new shared message method calling scheme. Only update an opened dataset's fill value property if it's different from the default fill value settings. Tested on: Linux/32 2.6 (chicago) Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5Ofill.c')
-rw-r--r--src/H5Ofill.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5Ofill.c b/src/H5Ofill.c
index 27ee7b4..3ec0457 100644
--- a/src/H5Ofill.c
+++ b/src/H5Ofill.c
@@ -121,20 +121,20 @@ const H5O_msg_class_t H5O_MSG_FILL_NEW[1] = {{
H5O_FILL_NEW_ID, /*message id number */
"fill_new", /*message name for debugging */
sizeof(H5O_fill_t), /*native message size */
- H5O_fill_new_decode, /*decode message */
- H5O_fill_new_encode, /*encode message */
+ H5O_fill_new_shared_decode, /*decode message */
+ H5O_fill_new_shared_encode, /*encode message */
H5O_fill_new_copy, /*copy the native value */
- H5O_fill_new_size, /*raw message size */
+ H5O_fill_new_shared_size, /*raw message size */
H5O_fill_new_reset, /*free internal memory */
H5O_fill_new_free, /* free method */
- NULL, /* file delete method */
- NULL, /* link method */
+ H5O_fill_new_shared_delete, /* file delete method */
+ H5O_fill_new_shared_link, /* link method */
H5O_fill_new_get_share, /* get share method */
H5O_fill_new_set_share, /* set share method */
NULL, /*can share method */
H5O_fill_new_is_shared, /* is shared method */
NULL, /* pre copy native value to file */
- NULL, /* copy native value to file */
+ H5O_fill_new_shared_copy_file, /* copy native value to file */
NULL, /* post copy native value to file */
NULL, /* get creation index */
NULL, /* set creation index */