diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-03-25 15:22:38 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-03-25 15:22:38 (GMT) |
commit | 48205a43feeb654d3b63b3bddf3d58a8bae40339 (patch) | |
tree | e25ff63cc18596302d99cca9afb8705787451d2d /src/H5BTprivate.h | |
parent | 974636c58fa6bc0e9ecfce4c897640a2ae50143b (diff) | |
download | hdf5-48205a43feeb654d3b63b3bddf3d58a8bae40339.zip hdf5-48205a43feeb654d3b63b3bddf3d58a8bae40339.tar.gz hdf5-48205a43feeb654d3b63b3bddf3d58a8bae40339.tar.bz2 |
[svn-r10421] Purpose:
New feature & code cleanup
Description:
Add feature to find first block >= a certain size (useful for allocating
space)
Cleaned up various comments, etc.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Solaris 2.9 (shanti)
Diffstat (limited to 'src/H5BTprivate.h')
-rw-r--r-- | src/H5BTprivate.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5BTprivate.h b/src/H5BTprivate.h index b98aac1..f6470e5 100644 --- a/src/H5BTprivate.h +++ b/src/H5BTprivate.h @@ -52,8 +52,9 @@ H5_DLL herr_t H5BT_remove(H5F_t *f, hid_t dxpl_id, haddr_t addr, haddr_t offset, hsize_t length); H5_DLL herr_t H5BT_get_total_size(H5F_t *f, hid_t dxpl_id, haddr_t addr, hsize_t *tot_size); +H5_DLL herr_t H5BT_locate(H5F_t *f, hid_t dxpl_id, haddr_t addr, hsize_t size, + haddr_t *locate_addr, hsize_t *locate_size); H5_DLL herr_t H5BT_delete(H5F_t *f, hid_t dxpl_id, haddr_t addr); #endif /* _H5BTprivate_H */ - |