diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-12-30 14:27:29 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-12-30 14:27:29 (GMT) |
commit | 11631664fd46f16acdee324a07851f47480db0c9 (patch) | |
tree | 90faca92d82b1231f65c29b80273a182043d0f13 /src/H5SLprivate.h | |
parent | 427ff7da2848042f68ecfadf5a321b1d8077e9db (diff) | |
download | hdf5-11631664fd46f16acdee324a07851f47480db0c9.zip hdf5-11631664fd46f16acdee324a07851f47480db0c9.tar.gz hdf5-11631664fd46f16acdee324a07851f47480db0c9.tar.bz2 |
[svn-r9730] Purpose:
Code cleanup (sorta)
Description:
Transition the generic property list code from using the threaded, balanced
binary tree code (H5TB<foo>() routines) to use skip lists (H5SL<foo>() routines)
for internal management of properties, etc.
Platforms tested:
FreeBSD 4.10 (sleipnir)
Too minor to require h5committest
Diffstat (limited to 'src/H5SLprivate.h')
-rw-r--r-- | src/H5SLprivate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5SLprivate.h b/src/H5SLprivate.h index 5ee6ac4..43367fb 100644 --- a/src/H5SLprivate.h +++ b/src/H5SLprivate.h @@ -60,8 +60,8 @@ typedef herr_t (*H5SL_operator_t)(void *item, void *key, H5_DLL H5SL_t *H5SL_create(H5SL_type_t type, double p, size_t max_level); H5_DLL size_t H5SL_count(H5SL_t *slist); H5_DLL herr_t H5SL_insert(H5SL_t *slist, void *item, void *key); -H5_DLL void *H5SL_remove(H5SL_t *slist, void *key); -H5_DLL void *H5SL_search(H5SL_t *slist, void *key); +H5_DLL void *H5SL_remove(H5SL_t *slist, const void *key); +H5_DLL void *H5SL_search(H5SL_t *slist, const void *key); H5_DLL H5SL_node_t *H5SL_first(H5SL_t *slist); H5_DLL H5SL_node_t *H5SL_next(H5SL_node_t *slist_node); H5_DLL void *H5SL_item(H5SL_node_t *slist_node); |