summaryrefslogtreecommitdiffstats
path: root/src/H5SLprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2013-10-04 17:03:07 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2013-10-04 17:03:07 (GMT)
commit2060d4f6b906fa2b46ad87578e67f5386ce4cde7 (patch)
tree998eb14408ab3edee06184e1e09038611994e00f /src/H5SLprivate.h
parent9d05904ae05ffc1070b890ef140d527484b355b7 (diff)
downloadhdf5-2060d4f6b906fa2b46ad87578e67f5386ce4cde7.zip
hdf5-2060d4f6b906fa2b46ad87578e67f5386ce4cde7.tar.gz
hdf5-2060d4f6b906fa2b46ad87578e67f5386ce4cde7.tar.bz2
[svn-r24255] Description:
Switch H5I internal data structure from using hash table to skip lists. Tested on: Mac OSX 10.8.4 (amazon) w/C++ & FORTRAN FreeBSD, Linux, etc. forthcoming
Diffstat (limited to 'src/H5SLprivate.h')
-rw-r--r--src/H5SLprivate.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5SLprivate.h b/src/H5SLprivate.h
index 07ee414..ce2f091 100644
--- a/src/H5SLprivate.h
+++ b/src/H5SLprivate.h
@@ -48,6 +48,7 @@ typedef enum {
H5SL_TYPE_UNSIGNED, /* Skip list keys are 'unsigned's */
H5SL_TYPE_SIZE, /* Skip list keys are 'size_t's */
H5SL_TYPE_OBJ, /* Skip list keys are 'H5_obj_t's */
+ H5SL_TYPE_HID, /* Skip list keys are 'hid_t's */
H5SL_TYPE_GENERIC /* Skip list keys are unknown, comparison callback supplied */
} H5SL_type_t;