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/H5Fsuper.c | |
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/H5Fsuper.c')
-rw-r--r-- | src/H5Fsuper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Fsuper.c b/src/H5Fsuper.c index 7d1a8ad..cbc5f72 100644 --- a/src/H5Fsuper.c +++ b/src/H5Fsuper.c @@ -996,7 +996,7 @@ H5F_super_ext_size(H5F_t *f, hid_t dxpl_id, hsize_t *super_ext_size) ext_loc.addr = f->shared->extension_addr; /* Get object header info for superblock extension */ - if(H5O_get_info(&ext_loc, &oinfo, dxpl_id) < 0) + if(H5O_get_info(&ext_loc, dxpl_id, FALSE, &oinfo) < 0) HGOTO_ERROR(H5E_FILE, H5E_CANTGET, FAIL, "unable to retrieve superblock extension info") /* Set the superblock extension size */ |