diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2016-11-18 01:48:21 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2016-11-18 01:48:21 (GMT) |
commit | eba0ff43c968ef9a0b09edf19c1e337cfcae0816 (patch) | |
tree | 53142d64c8e678f0862533b17790bb4ea72fa87c /src/H5AC.c | |
parent | 248a93cde8d87dd3a8162831103b5358a166fed8 (diff) | |
download | hdf5-eba0ff43c968ef9a0b09edf19c1e337cfcae0816.zip hdf5-eba0ff43c968ef9a0b09edf19c1e337cfcae0816.tar.gz hdf5-eba0ff43c968ef9a0b09edf19c1e337cfcae0816.tar.bz2 |
Remove 'clear' callback from metadata cache client interface, using the
new 'entry cleaned' notify action innstead.
Diffstat (limited to 'src/H5AC.c')
-rw-r--r-- | src/H5AC.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -567,7 +567,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->shared->cache, 0) < 0) + if(H5C_clear_coll_entries(f->shared->cache, FALSE) < 0) HGOTO_ERROR(H5E_CACHE, H5E_CANTGET, FAIL, "H5C_clear_coll_entries() failed.") aux_ptr = (H5AC_aux_t *)H5C_get_aux_ptr(f->shared->cache); @@ -726,7 +726,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->shared->cache, 0) < 0) + if(H5C_clear_coll_entries(f->shared->cache, FALSE) < 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 */ |