summaryrefslogtreecommitdiffstats
path: root/src/H5SLprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2004-11-29 21:01:24 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2004-11-29 21:01:24 (GMT)
commitd5b0db14a939d07aa220216b1698c9ddc9cc7430 (patch)
tree05528092819fe67012dba14723595703309e092c /src/H5SLprivate.h
parent3eea418b507d9a561606c658eba5c6b0158f520d (diff)
downloadhdf5-d5b0db14a939d07aa220216b1698c9ddc9cc7430.zip
hdf5-d5b0db14a939d07aa220216b1698c9ddc9cc7430.tar.gz
hdf5-d5b0db14a939d07aa220216b1698c9ddc9cc7430.tar.bz2
[svn-r9599] Purpose:
New internal feature Description: Add a "release" routine to the skip lists, which releases all the nodes in the skip list, but keeps the skip list active. Platforms tested: FreeBSD 4.10 (sleipnir) Linux 2.4 (verbena) Too minor to require h5committest
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 94e2b4d..e6f64d8 100644
--- a/src/H5SLprivate.h
+++ b/src/H5SLprivate.h
@@ -60,6 +60,7 @@ H5_DLL void *H5SL_search(H5SL_t *slist, 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);
+H5_DLL herr_t H5SL_release(H5SL_t *slist);
H5_DLL herr_t H5SL_close(H5SL_t *slist);
#endif /* _H5HPprivate_H */