summaryrefslogtreecommitdiffstats
path: root/src/H5Pfapl.c
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2017-04-21 21:05:44 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2017-04-21 21:05:44 (GMT)
commitc0a8eb362cc22cbfabe44456d83faeb47f946a65 (patch)
treef4e31f9295efab164785e0e112dcadf850300c01 /src/H5Pfapl.c
parent7037520281fa5cde30a2377f94f7772e96f4f0f6 (diff)
parent15f85df5405eb2caf6ee4d3bc5f558344d4bb16a (diff)
downloadhdf5-c0a8eb362cc22cbfabe44456d83faeb47f946a65.zip
hdf5-c0a8eb362cc22cbfabe44456d83faeb47f946a65.tar.gz
hdf5-c0a8eb362cc22cbfabe44456d83faeb47f946a65.tar.bz2
Merge pull request #450 in HDFFV/hdf5 from ~DEROBINS/hdf5_der:hdf5_1_10 to hdf5_1_10
* commit '15f85df5405eb2caf6ee4d3bc5f558344d4bb16a': bin/trace updates in H5PL.c The cache_image test shows a skipped message about EoC in parallel. Added code to disable the evict-on-close feature in the parallel library.
Diffstat (limited to 'src/H5Pfapl.c')
-rw-r--r--src/H5Pfapl.c20
1 files changed, 18 insertions, 2 deletions
diff --git a/src/H5Pfapl.c b/src/H5Pfapl.c
index 0dab539..0ab0433 100644
--- a/src/H5Pfapl.c
+++ b/src/H5Pfapl.c
@@ -4379,7 +4379,19 @@ H5P_facc_mdc_log_location_close(const char H5_ATTR_UNUSED *name, size_t H5_ATTR_
*-------------------------------------------------------------------------
*/
herr_t
-H5Pset_evict_on_close(hid_t fapl_id, hbool_t evict_on_close)
+H5Pset_evict_on_close(
+#if defined(H5_HAVE_PARALLEL) && !defined(H5_DEBUG_BUILD)
+ hid_t H5_ATTR_UNUSED fapl_id,
+#else
+ hid_t fapl_id,
+#endif /* H5_HAVE_PARALLEL and !H5_DEBUG_BUILD */
+
+#ifdef H5_HAVE_PARALLEL
+ hbool_t H5_ATTR_UNUSED evict_on_close
+#else
+ hbool_t evict_on_close
+#endif /* H5_HAVE_PARALLEL */
+)
{
H5P_genplist_t *plist; /* property list pointer */
herr_t ret_value = SUCCEED; /* return value */
@@ -4395,9 +4407,13 @@ H5Pset_evict_on_close(hid_t fapl_id, hbool_t evict_on_close)
if(NULL == (plist = (H5P_genplist_t *)H5I_object(fapl_id)))
HGOTO_ERROR(H5E_ATOM, H5E_BADATOM, FAIL, "can't find object for ID")
- /* Set values */
+#ifndef H5_HAVE_PARALLEL
+ /* Set value */
if(H5P_set(plist, H5F_ACS_EVICT_ON_CLOSE_FLAG_NAME, &evict_on_close) < 0)
HGOTO_ERROR(H5E_PLIST, H5E_CANTSET, FAIL, "can't set evict on close property")
+#else
+ HGOTO_ERROR(H5E_PLIST, H5E_CANTSET, FAIL, "evict on close is currently not supported in parallel HDF5")
+#endif /* H5_HAVE_PARALLEL */
done:
FUNC_LEAVE_API(ret_value)