diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-05-03 18:53:50 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-05-03 18:53:50 (GMT) |
commit | 08b55972053dec4b9c7cd5a2480355869b7c0663 (patch) | |
tree | 441b660b613b35d098611eb5493b55f2429d710f /src/H5Bprivate.h | |
parent | 1d381a91e759443cbde4620c254d658eff1e8f6f (diff) | |
download | hdf5-08b55972053dec4b9c7cd5a2480355869b7c0663.zip hdf5-08b55972053dec4b9c7cd5a2480355869b7c0663.tar.gz hdf5-08b55972053dec4b9c7cd5a2480355869b7c0663.tar.bz2 |
[svn-r8472] Purpose:
Code optimization
Description:
Eliminate the B-tree "split_ratios" as a parameter and pull it from the
DXPL instead.
Platforms tested:
Solaris 2.7 (arabica)
FreeBSD 4.9 (sleipnir) w/parallel
too minor to require h5committest
Diffstat (limited to 'src/H5Bprivate.h')
-rw-r--r-- | src/H5Bprivate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Bprivate.h b/src/H5Bprivate.h index c3ebf85..1f7a8eb 100644 --- a/src/H5Bprivate.h +++ b/src/H5Bprivate.h @@ -116,7 +116,7 @@ H5_DLL herr_t H5B_create (H5F_t *f, hid_t dxpl_id, const H5B_class_t *type, void H5_DLL herr_t H5B_find (H5F_t *f, hid_t dxpl_id, const H5B_class_t *type, haddr_t addr, void *udata); H5_DLL herr_t H5B_insert (H5F_t *f, hid_t dxpl_id, const H5B_class_t *type, haddr_t addr, - const double split_ratios[], void *udata); + void *udata); H5_DLL herr_t H5B_iterate (H5F_t *f, hid_t dxpl_id, const H5B_class_t *type, H5B_operator_t op, haddr_t addr, void *udata); H5_DLL herr_t H5B_remove(H5F_t *f, hid_t dxpl_id, const H5B_class_t *type, haddr_t addr, |