summaryrefslogtreecommitdiffstats
path: root/src/H5AC.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2015-06-22 15:54:43 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2015-06-22 15:54:43 (GMT)
commitf56008e0fe0c6bce99205911d05dd4396baf6952 (patch)
treea898f51963384d3b9b169da9d6231fb2a0d91e4a /src/H5AC.c
parentcf07aa6803a70f52f6a178219097e9f9e6ee1a51 (diff)
downloadhdf5-f56008e0fe0c6bce99205911d05dd4396baf6952.zip
hdf5-f56008e0fe0c6bce99205911d05dd4396baf6952.tar.gz
hdf5-f56008e0fe0c6bce99205911d05dd4396baf6952.tar.bz2
[svn-r27264] some cleanups.
Diffstat (limited to 'src/H5AC.c')
-rw-r--r--src/H5AC.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5AC.c b/src/H5AC.c
index 446e58c..aa35ed8 100644
--- a/src/H5AC.c
+++ b/src/H5AC.c
@@ -617,7 +617,7 @@ H5AC_dest(H5F_t *f, hid_t dxpl_id)
#ifdef H5_HAVE_PARALLEL
/* destroying the cache, so clear all collective entries */
- if(H5C_clear_coll_entries(f, dxpl_id, f->shared->cache, 0) < 0)
+ if(H5C_clear_coll_entries(f->shared->cache, 0) < 0)
HGOTO_ERROR(H5E_CACHE, H5E_CANTGET, FAIL, "H5C_clear_coll_entries() failed.")
aux_ptr = (struct H5AC_aux_t *)(f->shared->cache->aux_ptr);
@@ -759,7 +759,7 @@ H5AC_flush(H5F_t *f, hid_t dxpl_id)
#ifdef H5_HAVE_PARALLEL
/* flushing the cache, so clear all collective entries */
- if(H5C_clear_coll_entries(f, dxpl_id, f->shared->cache, 0) < 0)
+ if(H5C_clear_coll_entries(f->shared->cache, 0) < 0)
HGOTO_ERROR(H5E_CACHE, H5E_CANTGET, FAIL, "H5C_clear_coll_entries() failed.")
/* Attempt to flush all entries from rank 0 & Bcast clean list to other ranks */
@@ -4341,7 +4341,7 @@ HDfprintf(stdout, "%d:H5AC_propagate...:%u: (u/uu/i/iu/r/ru) = %zu/%u/%zu/%u/%zu
evicted later. All ranks are guranteed to mark the same entires
since we don't modify the order of the collectively accessed
entries except through collective access. */
- if(H5C_clear_coll_entries(f, dxpl_id, cache_ptr, TRUE) < 0)
+ if(H5C_clear_coll_entries(cache_ptr, TRUE) < 0)
HGOTO_ERROR(H5E_CACHE, H5E_CANTGET, FAIL, "H5C_clear_coll_entries() failed.")
switch(aux_ptr->metadata_write_strategy) {