summaryrefslogtreecommitdiffstats
path: root/test/tsohm.c
diff options
context:
space:
mode:
authorJames Laird <jlaird@hdfgroup.org>2007-01-09 15:11:16 (GMT)
committerJames Laird <jlaird@hdfgroup.org>2007-01-09 15:11:16 (GMT)
commit6e40802f06d0d4f12a710522fd977531d36fafe9 (patch)
tree40f9549e155d34cbfc03612c6fd41259c9e5ace8 /test/tsohm.c
parent15b28ad04ab6894cfd308d7855798b6ed82305bc (diff)
downloadhdf5-6e40802f06d0d4f12a710522fd977531d36fafe9.zip
hdf5-6e40802f06d0d4f12a710522fd977531d36fafe9.tar.gz
hdf5-6e40802f06d0d4f12a710522fd977531d36fafe9.tar.bz2
[svn-r13126] More cleanup. Shared messages now use in-heap callbacks when searching
for a matching message, which should improve performance. Tested on Windows, kagiso, and smirom.
Diffstat (limited to 'test/tsohm.c')
-rw-r--r--test/tsohm.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/tsohm.c b/test/tsohm.c
index 23a2975..9fcbf41 100644
--- a/test/tsohm.c
+++ b/test/tsohm.c
@@ -356,7 +356,7 @@ static void test_sohm_fcpl(void)
* have corrupted the fcpl, although we do need to reset the
* second index that we changed above.
*/
- ret = H5Pset_shared_mesg_index(fcpl_id, 1, test_type_flags[1], 15 /* JAMES */);
+ ret = H5Pset_shared_mesg_index(fcpl_id, 1, test_type_flags[1], 15);
CHECK_I(ret, "H5Pset_shared_mesg_index");
ret = H5Pset_shared_mesg_phase_change(fcpl_id, 10, 11);
CHECK_I(ret, "H5Pset_shared_mesg_phase_change");
@@ -1981,7 +1981,6 @@ static void test_sohm_size2(int close_reopen)
fcpl_id = H5Pcreate(H5P_FILE_CREATE);
CHECK_I(fcpl_id, "H5Pcreate");
- /* JAMES: should be zero-indexed? */
ret = H5Pset_shared_mesg_nindexes(fcpl_id, 3);
CHECK_I(ret, "H5Pset_shared_mesg_nindexes");
ret = H5Pset_shared_mesg_index(fcpl_id, 0, H5O_MESG_SDSPACE_FLAG | H5O_MESG_DTYPE_FLAG, 20);