diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2011-10-18 21:27:58 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2011-10-18 21:27:58 (GMT) |
commit | 395c1c7db532897452716615889ad882c4ee935a (patch) | |
tree | 1625604f48f8d78b13efe29909fd1eff801fb766 /tools/lib/h5tools_ref.c | |
parent | aca9bf5cf3039fa0179067c1ee8877870350e819 (diff) | |
download | hdf5-395c1c7db532897452716615889ad882c4ee935a.zip hdf5-395c1c7db532897452716615889ad882c4ee935a.tar.gz hdf5-395c1c7db532897452716615889ad882c4ee935a.tar.bz2 |
[svn-r21603] Purpose: Add generic skip list implementation
Description:
Added new H5SL_TYPE_GENERIC skip list type, which uses void *'s as keys and a
client-supplied callback for key comparison. This was added to support the
upcoming "merge named datatype" feature for H5Ocopy, but may be used in other
places as well. Also added testing.
Also fixed a potential bug with the H5SL_TYPE_OBJ implementation, and added
testing for that.
Tested: jam, koala, heiwa (h5committest), durandal
Diffstat (limited to 'tools/lib/h5tools_ref.c')
-rw-r--r-- | tools/lib/h5tools_ref.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/h5tools_ref.c b/tools/lib/h5tools_ref.c index 07d2a57..caf71df 100644 --- a/tools/lib/h5tools_ref.c +++ b/tools/lib/h5tools_ref.c @@ -114,7 +114,7 @@ init_ref_path_table(void) HDassert(thefile > 0); /* Create skip list to store reference path information */ - if((ref_path_table = H5SL_create(H5SL_TYPE_HADDR))==NULL) + if((ref_path_table = H5SL_create(H5SL_TYPE_HADDR, NULL))==NULL) return (-1); /* Iterate over objects in this file */ |