diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2010-07-20 18:49:06 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2010-07-20 18:49:06 (GMT) |
commit | 06763537dabab2043d7df4cf05ed21f7d01977c0 (patch) | |
tree | 76b079d694e68a99ec2ed94e08a8d17e5f3ee02c /src/H5B2.c | |
parent | 037c318770490c07f23e30af26353b68dbf712c0 (diff) | |
download | hdf5-06763537dabab2043d7df4cf05ed21f7d01977c0.zip hdf5-06763537dabab2043d7df4cf05ed21f7d01977c0.tar.gz hdf5-06763537dabab2043d7df4cf05ed21f7d01977c0.tar.bz2 |
[svn-r19112] Description:
Rename H5AC_set() to H5AC_insert_entry()
Get rid of H5C_set_skip_flags() & related flags
Tested on:
Eyeballed only, very simple...
Diffstat (limited to 'src/H5B2.c')
-rw-r--r-- | src/H5B2.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -138,7 +138,7 @@ H5B2_create(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "file allocation failed for B-tree header") /* Cache the new B-tree node */ - if(H5AC_set(f, dxpl_id, H5AC_BT2_HDR, *addr_p, bt2, H5AC__NO_FLAGS_SET) < 0) + if(H5AC_insert_entry(f, dxpl_id, H5AC_BT2_HDR, *addr_p, bt2, H5AC__NO_FLAGS_SET) < 0) HGOTO_ERROR(H5E_BTREE, H5E_CANTINIT, FAIL, "can't add B-tree header to cache") done: |