diff options
author | Vailin Choi <vchoi@hdfgroup.org> | 2011-10-13 22:41:56 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@hdfgroup.org> | 2011-10-13 22:41:56 (GMT) |
commit | 682a4f2b5d383d6abf6741a4a5a573f1c67e668e (patch) | |
tree | b3f05c0e95b537d39fc2471b5cbbeedd17b3c337 /src/H5Aint.c | |
parent | 309f0b543b70d87cb4dcf6f09df0e81657244a4c (diff) | |
download | hdf5-682a4f2b5d383d6abf6741a4a5a573f1c67e668e.zip hdf5-682a4f2b5d383d6abf6741a4a5a573f1c67e668e.tar.gz hdf5-682a4f2b5d383d6abf6741a4a5a573f1c67e668e.tar.bz2 |
[svn-r21555] The first part fix for bug HDFFV-7640: does not need to do H5O_move_msgs_forward() when writing attributes. h5committested.
Tests are checked into the performance suite.
Diffstat (limited to 'src/H5Aint.c')
-rw-r--r-- | src/H5Aint.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/H5Aint.c b/src/H5Aint.c index f1a40bd..123f265 100644 --- a/src/H5Aint.c +++ b/src/H5Aint.c @@ -134,11 +134,15 @@ H5FL_SEQ_DEFINE(H5A_t_ptr); * 24 June 2008 * Changed the table of attribute objects to be the table of * pointers to attribute objects for the ease of operation. + * + * Vailin Choi; September 2011 + * Change "oh_modified" from boolean to unsigned + * (See H5Oprivate.h for possible flags) *------------------------------------------------------------------------- */ static herr_t H5A_compact_build_table_cb(H5O_t UNUSED *oh, H5O_mesg_t *mesg/*in,out*/, - unsigned sequence, hbool_t UNUSED *oh_modified, void *_udata/*in,out*/) + unsigned sequence, unsigned UNUSED *oh_modified, void *_udata/*in,out*/) { H5A_compact_bt_ud_t *udata = (H5A_compact_bt_ud_t *)_udata; /* Operator user data */ herr_t ret_value = H5_ITER_CONT; /* Return value */ |