summaryrefslogtreecommitdiffstats
path: root/src/H5Ctag.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2016-09-19 20:18:30 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2016-09-19 20:18:30 (GMT)
commit2646f917adb5b2e17404260e433dc3ed7c39a602 (patch)
tree81bdef26f7c5a696fcacd5d824ef8abf97d80d2e /src/H5Ctag.c
parent29b169abb3ab8fcb0c1e75693def8829433dd6a0 (diff)
downloadhdf5-2646f917adb5b2e17404260e433dc3ed7c39a602.zip
hdf5-2646f917adb5b2e17404260e433dc3ed7c39a602.tar.gz
hdf5-2646f917adb5b2e17404260e433dc3ed7c39a602.tar.bz2
Cleaned up feature for dissemination to LLNL:
- Removed support for datatypes. - Commented out support for groups - General change clean-up - Added a list of improvements to BRANCH.txt
Diffstat (limited to 'src/H5Ctag.c')
-rw-r--r--src/H5Ctag.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5Ctag.c b/src/H5Ctag.c
index fc01ecb..e1b4df6 100644
--- a/src/H5Ctag.c
+++ b/src/H5Ctag.c
@@ -374,15 +374,15 @@ H5C_evict_tagged_entries(H5F_t * f, hid_t dxpl_id, haddr_t tag, hbool_t match_gl
/* Start evicting entries */
do {
- /* Reset pinned/evicted tracking flags */
- ctx.pinned_entries_need_evicted = FALSE;
- ctx.evicted_entries_last_pass = FALSE;
+ /* Reset pinned/evicted tracking flags */
+ ctx.pinned_entries_need_evicted = FALSE;
+ ctx.evicted_entries_last_pass = FALSE;
- /* Iterate through entries in the cache */
+ /* Iterate through entries in the cache */
if(H5C__iter_tagged_entries(cache, tag, match_global, H5C__evict_tagged_entries_cb, &ctx) < 0)
- HGOTO_ERROR(H5E_CACHE, H5E_BADITER, match_global, "Iteration of tagged entries failed")
+ HGOTO_ERROR(H5E_CACHE, H5E_BADITER, FAIL, "Iteration of tagged entries failed")
- /* Keep doing this until we have stopped evicted entries */
+ /* Keep doing this until we have stopped evicted entries */
} while(TRUE == ctx.evicted_entries_last_pass);
/* Fail if we have finished evicting entries and pinned entries still need evicted */