summaryrefslogtreecommitdiffstats
path: root/src/H5FDprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2004-06-12 22:33:00 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2004-06-12 22:33:00 (GMT)
commita3668504d93f7015661ad63c29190bceb2fd2fe4 (patch)
tree0728407d093b6b0830b085ac956c141605c6e564 /src/H5FDprivate.h
parent8735902ea3fd111e2a8924b4516b701659259cf4 (diff)
downloadhdf5-a3668504d93f7015661ad63c29190bceb2fd2fe4.zip
hdf5-a3668504d93f7015661ad63c29190bceb2fd2fe4.tar.gz
hdf5-a3668504d93f7015661ad63c29190bceb2fd2fe4.tar.bz2
[svn-r8665] 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/H5FDprivate.h')
-rw-r--r--src/H5FDprivate.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/H5FDprivate.h b/src/H5FDprivate.h
index f115be4..4266bb9 100644
--- a/src/H5FDprivate.h
+++ b/src/H5FDprivate.h
@@ -75,5 +75,9 @@ H5_DLL herr_t H5FD_flush(H5FD_t *file, hid_t dxpl_id, unsigned closing);
H5_DLL herr_t H5FD_get_fileno(const H5FD_t *file, unsigned long *filenum);
H5_DLL herr_t H5FD_get_vfd_handle(H5FD_t *file, hid_t fapl, void** file_handle);
H5_DLL hssize_t H5FD_get_freespace(H5FD_t *file);
+H5_DLL htri_t H5FD_can_extend(H5FD_t *file, H5FD_mem_t type, haddr_t addr,
+ hsize_t size, hsize_t extra_requested);
+H5_DLL herr_t H5FD_extend(H5FD_t *file, H5FD_mem_t type, haddr_t addr,
+ hsize_t size, hsize_t extra_requested);
#endif /* !_H5FDprivate_H */