diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-07-17 21:04:44 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-07-17 21:04:44 (GMT) |
commit | 814ad1cb42a824fc5a0b0b4d675aa7b4c6caec4c (patch) | |
tree | c02814849855790343ad1c2b421c73b3eaaf270d /src/H5Oprivate.h | |
parent | 4be636f4f00271f85802fbb6ef079146f2dbf7fb (diff) | |
download | hdf5-814ad1cb42a824fc5a0b0b4d675aa7b4c6caec4c.zip hdf5-814ad1cb42a824fc5a0b0b4d675aa7b4c6caec4c.tar.gz hdf5-814ad1cb42a824fc5a0b0b4d675aa7b4c6caec4c.tar.bz2 |
[svn-r13986] Description:
Add flag to bypass (expensive) B-tree & heap size retrieval for
internal calls to H5O_get_info().
Teted on:
Mac OS X/32 10.4.10 (amazon)
FreeBSD/32 6.2 (duty)
Diffstat (limited to 'src/H5Oprivate.h')
-rw-r--r-- | src/H5Oprivate.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5Oprivate.h b/src/H5Oprivate.h index 2376113..120568e 100644 --- a/src/H5Oprivate.h +++ b/src/H5Oprivate.h @@ -531,7 +531,8 @@ H5_DLL herr_t H5O_touch_oh(H5F_t *f, hid_t dxpl_id, struct H5O_t *oh, H5_DLL herr_t H5O_bogus_oh(H5F_t *f, hid_t dxpl_id, struct H5O_t *oh, unsigned mesg_flags); #endif /* H5O_ENABLE_BOGUS */ H5_DLL herr_t H5O_delete(H5F_t *f, hid_t dxpl_id, haddr_t addr); -H5_DLL herr_t H5O_get_info(H5O_loc_t *oloc, H5O_info_t *oinfo, hid_t dxpl_id); +H5_DLL herr_t H5O_get_info(H5O_loc_t *oloc, hid_t dxpl_id, hbool_t want_ih_info, + H5O_info_t *oinfo); H5_DLL herr_t H5O_obj_type(const H5O_loc_t *loc, H5O_type_t *obj_type, hid_t dxpl_id); H5_DLL herr_t H5O_get_create_plist(const H5O_loc_t *loc, hid_t dxpl_id, struct H5P_genplist_t *oc_plist); H5_DLL hid_t H5O_open_name(H5G_loc_t *loc, const char *name, hid_t lapl_id); |