diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-11-29 21:01:20 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-11-29 21:01:20 (GMT) |
commit | 73df82dcdf83544c8a07b572568e9a3a3f0f9f77 (patch) | |
tree | b56fa674812962644fcc0cadf05e073d2685c6bf /src/H5SLprivate.h | |
parent | 51ed85b2775eba3923fb9b0c7ee887ff9284cc22 (diff) | |
download | hdf5-73df82dcdf83544c8a07b572568e9a3a3f0f9f77.zip hdf5-73df82dcdf83544c8a07b572568e9a3a3f0f9f77.tar.gz hdf5-73df82dcdf83544c8a07b572568e9a3a3f0f9f77.tar.bz2 |
[svn-r9598] 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.h | 1 |
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 */ |