diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-06-12 22:32:19 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-06-12 22:32:19 (GMT) |
commit | 8b247f8aa3d958bbf8f4c8515ab60a4daedbdf5c (patch) | |
tree | b5ab31aba4a0a06c626c706ec997fd8c30343a2a /src/H5MFprivate.h | |
parent | ea3103c15ecddf752e23e63bcad6d1da13912619 (diff) | |
download | hdf5-8b247f8aa3d958bbf8f4c8515ab60a4daedbdf5c.zip hdf5-8b247f8aa3d958bbf8f4c8515ab60a4daedbdf5c.tar.gz hdf5-8b247f8aa3d958bbf8f4c8515ab60a4daedbdf5c.tar.bz2 |
[svn-r8664] Purpose:
Code optimization
Description:
Allow global heap collections to grow in size (up to a 64K limit) if they
are able to. This allows them to grow to a more reasonable size than the 4K
minimum size.
Platforms tested:
Solaris 2.7 (arabica)
FreeBSD 4.10 (sleipnir) w/parallel
Too minor to require h5committest
Diffstat (limited to 'src/H5MFprivate.h')
-rw-r--r-- | src/H5MFprivate.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/H5MFprivate.h b/src/H5MFprivate.h index 2a9b23d..14b2761 100644 --- a/src/H5MFprivate.h +++ b/src/H5MFprivate.h @@ -48,5 +48,9 @@ H5_DLL herr_t H5MF_xfree(H5F_t *f, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr, hsize_t size); H5_DLL haddr_t H5MF_realloc(H5F_t *f, H5FD_mem_t type, hid_t dxpl_id, haddr_t old_addr, hsize_t old_size, hsize_t new_size); +H5_DLL htri_t H5MF_can_extend(H5F_t *f, H5FD_mem_t type, haddr_t addr, + hsize_t size, hsize_t extra_requested); +H5_DLL htri_t H5MF_extend(H5F_t *f, H5FD_mem_t type, haddr_t addr, hsize_t size, + hsize_t extra_requested); #endif |