summaryrefslogtreecommitdiffstats
path: root/src/H5FSsection.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2010-05-06 14:24:08 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2010-05-06 14:24:08 (GMT)
commit772d09112253a0d86f93a551299c2601aebddcca (patch)
treead90ff73b4ea7f5f9d9b490094eb4d77f1789b6e /src/H5FSsection.c
parent62199d8ca155f98543548e896c8dada2225db3dd (diff)
downloadhdf5-772d09112253a0d86f93a551299c2601aebddcca.zip
hdf5-772d09112253a0d86f93a551299c2601aebddcca.tar.gz
hdf5-772d09112253a0d86f93a551299c2601aebddcca.tar.bz2
[svn-r18723] Description:
Rename H5[A]C_rename to H5[A]C_move_entry. Tested on: Mac OS X/32 10.6.3 (amazon) w/debug & production Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Diffstat (limited to 'src/H5FSsection.c')
-rw-r--r--src/H5FSsection.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5FSsection.c b/src/H5FSsection.c
index e53fa0c..618fb0e 100644
--- a/src/H5FSsection.c
+++ b/src/H5FSsection.c
@@ -1377,8 +1377,8 @@ HDfprintf(stderr, "%s: old_addr = %a, fspace->sect_addr = %a\n", FUNC, old_addr,
/* Move object in cache, if it actually was relocated */
if(H5F_addr_ne(fspace->sect_addr, old_addr)) {
- if(H5AC_rename(f, H5AC_FSPACE_SINFO, old_addr, fspace->sect_addr) < 0)
- HGOTO_ERROR(H5E_FSPACE, H5E_CANTRENAME, FAIL, "unable to move free space section info")
+ if(H5AC_move_entry(f, H5AC_FSPACE_SINFO, old_addr, fspace->sect_addr) < 0)
+ HGOTO_ERROR(H5E_FSPACE, H5E_CANTMOVE, FAIL, "unable to move free space section info")
} /* end if */
else {
/* Mark free space section as dirty */
@@ -1442,8 +1442,8 @@ HDfprintf(stderr, "%s: Allocating space for smaller serialized sections, new_siz
/* Move object in cache, if it actually was relocated */
if(H5F_addr_ne(fspace->sect_addr, old_addr)) {
- if(H5AC_rename(f, H5AC_FSPACE_SINFO, old_addr, fspace->sect_addr) < 0)
- HGOTO_ERROR(H5E_FSPACE, H5E_CANTRENAME, FAIL, "unable to move free space section info")
+ if(H5AC_move_entry(f, H5AC_FSPACE_SINFO, old_addr, fspace->sect_addr) < 0)
+ HGOTO_ERROR(H5E_FSPACE, H5E_CANTMOVE, FAIL, "unable to move free space section info")
} /* end if */
else {
/* Mark free space section as dirty */