summaryrefslogtreecommitdiffstats
path: root/src/H5O.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2016-01-03 22:08:44 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2016-01-03 22:08:44 (GMT)
commite7f7337d5b950ce66aa78b270ea2696939a13dac (patch)
tree551e8f318c1cf726dfc9422132d4ec782db49dff /src/H5O.c
parentfc758c5cbe1018d11c7f97a162e80fbddda66789 (diff)
downloadhdf5-e7f7337d5b950ce66aa78b270ea2696939a13dac.zip
hdf5-e7f7337d5b950ce66aa78b270ea2696939a13dac.tar.gz
hdf5-e7f7337d5b950ce66aa78b270ea2696939a13dac.tar.bz2
[svn-r28778] Description:
Clean up object header proxy code, while tracking down the v2 B-tree SWMR failures. Tested on: MacOSX/64 10.11.2 (amazon) w/serial & parallel (h5committest not required on this branch)
Diffstat (limited to 'src/H5O.c')
-rw-r--r--src/H5O.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/H5O.c b/src/H5O.c
index 788d657..2988567 100644
--- a/src/H5O.c
+++ b/src/H5O.c
@@ -1278,7 +1278,7 @@ H5O_create(H5F_t *f, hid_t dxpl_id, size_t size_hint, size_t initial_rc,
/* Create object header proxy if doing SWMR writes */
if(H5F_INTENT(f) & H5F_ACC_SWMR_WRITE) {
- if(H5O_proxy_create(f, dxpl_id, oh) < 0)
+ if(H5O__proxy_create(f, dxpl_id, oh) < 0)
HGOTO_ERROR(H5E_OHDR, H5E_CANTCREATE, FAIL, "can't create object header proxy")
} /* end if */
else
@@ -3701,7 +3701,7 @@ H5O_pin_flush_dep_proxy(H5O_loc_t *loc, hid_t dxpl_id)
HGOTO_ERROR(H5E_OHDR, H5E_CANTPROTECT, NULL, "unable to protect object header")
/* Pin object header proxy */
- if(NULL == (proxy = H5O_proxy_pin(loc->file, dxpl_id, oh)))
+ if(NULL == (proxy = H5O__proxy_pin(loc->file, dxpl_id, oh)))
HGOTO_ERROR(H5E_OHDR, H5E_CANTPIN, NULL, "unable to pin object header proxy")
/* Set the return value */
@@ -3713,7 +3713,7 @@ done:
HDONE_ERROR(H5E_OHDR, H5E_CANTUNPROTECT, NULL, "unable to release object header")
if(!ret_value)
- if(proxy && H5O_proxy_unpin(proxy) < 0)
+ if(proxy && H5O__proxy_unpin(proxy) < 0)
HDONE_ERROR(H5E_OHDR, H5E_CANTUNPIN, NULL, "unable to release object header proxy")
FUNC_LEAVE_NOAPI(ret_value)
@@ -3747,11 +3747,10 @@ H5O_pin_flush_dep_proxy_oh(H5F_t *f, hid_t dxpl_id, H5O_t *oh)
HDassert(oh);
/* Pin object header proxy */
- if(NULL == (ret_value = H5O_proxy_pin(f, dxpl_id, oh)))
+ if(NULL == (ret_value = H5O__proxy_pin(f, dxpl_id, oh)))
HGOTO_ERROR(H5E_OHDR, H5E_CANTPIN, NULL, "unable to pin object header proxy")
done:
-
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5O_pin_flush_dep_proxy_oh() */
@@ -3779,7 +3778,7 @@ H5O_unpin_flush_dep_proxy(H5O_proxy_t *proxy)
HDassert(proxy);
/* Unin object header proxy */
- if(H5O_proxy_unpin(proxy) < 0)
+ if(H5O__proxy_unpin(proxy) < 0)
HGOTO_ERROR(H5E_OHDR, H5E_CANTUNPIN, FAIL, "unable to unpin object header proxy")
done: