summaryrefslogtreecommitdiffstats
path: root/src/H5E.c
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/H5E.c
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/H5E.c')
-rw-r--r--src/H5E.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/H5E.c b/src/H5E.c
index 72eec51..3fc158c 100644
--- a/src/H5E.c
+++ b/src/H5E.c
@@ -123,7 +123,6 @@ H5FL_DEFINE_STATIC(H5E_msg_t);
static const H5I_class_t H5I_ERRCLS_CLS[1] = {{
H5I_ERROR_CLASS, /* ID class value */
0, /* Class flags */
- 64, /* Minimum hash size for class */
0, /* # of reserved IDs for class */
(H5I_free_t)H5E_unregister_class /* Callback routine for closing objects of this class */
}};
@@ -132,7 +131,6 @@ static const H5I_class_t H5I_ERRCLS_CLS[1] = {{
static const H5I_class_t H5I_ERRMSG_CLS[1] = {{
H5I_ERROR_MSG, /* ID class value */
0, /* Class flags */
- 64, /* Minimum hash size for class */
0, /* # of reserved IDs for class */
(H5I_free_t)H5E_close_msg /* Callback routine for closing objects of this class */
}};
@@ -141,7 +139,6 @@ static const H5I_class_t H5I_ERRMSG_CLS[1] = {{
static const H5I_class_t H5I_ERRSTK_CLS[1] = {{
H5I_ERROR_STACK, /* ID class value */
0, /* Class flags */
- 64, /* Minimum hash size for class */
0, /* # of reserved IDs for class */
(H5I_free_t)H5E_close_stack /* Callback routine for closing objects of this class */
}};