diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2008-01-03 19:01:17 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2008-01-03 19:01:17 (GMT) |
commit | 136cefdf9116b910b6a46f1f649ee8b9cdc7fc68 (patch) | |
tree | 18b67bde577f74eab2a5519014daf99205c88902 /src/H5HFpkg.h | |
parent | 04d73e7a0c69839922cf78adcb04e2617fc0f5b9 (diff) | |
download | hdf5-136cefdf9116b910b6a46f1f649ee8b9cdc7fc68.zip hdf5-136cefdf9116b910b6a46f1f649ee8b9cdc7fc68.tar.gz hdf5-136cefdf9116b910b6a46f1f649ee8b9cdc7fc68.tar.bz2 |
[svn-r14364] Description:
Avoid creating free space manager for fractal heap when just performing
queries.
Tested on:
FreeBSD/32 6.2 (duty) in debug mode
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Mac OS X/32 10.4.10 (amazon) in debug mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Diffstat (limited to 'src/H5HFpkg.h')
-rw-r--r-- | src/H5HFpkg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5HFpkg.h b/src/H5HFpkg.h index 461cba7..702ce08 100644 --- a/src/H5HFpkg.h +++ b/src/H5HFpkg.h @@ -692,7 +692,7 @@ H5_DLL herr_t H5HF_man_iter_offset(H5HF_hdr_t *hdr, H5HF_block_iter_t *biter, H5_DLL hbool_t H5HF_man_iter_ready(H5HF_block_iter_t *biter); /* Free space manipulation routines */ -H5_DLL herr_t H5HF_space_start(H5HF_hdr_t *hdr, hid_t dxpl_id); +H5_DLL herr_t H5HF_space_start(H5HF_hdr_t *hdr, hid_t dxpl_id, hbool_t may_create); H5_DLL herr_t H5HF_space_add(H5HF_hdr_t *hdr, hid_t dxpl_id, H5HF_free_section_t *node, unsigned flags); H5_DLL htri_t H5HF_space_find(H5HF_hdr_t *hdr, hid_t dxpl_id, hsize_t request, |