summaryrefslogtreecommitdiffstats
path: root/src/H5Fio.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-21 18:00:14 (GMT)
committerGitHub <noreply@github.com>2023-06-21 18:00:14 (GMT)
commitef24087b1712260d970ec78731cdfbdde8e141e9 (patch)
tree7f6d907a14cd0c666904d5eeaefd87bb58eee5d0 /src/H5Fio.c
parent56513d9df75de92bb96f24e9d0e5e30dce54d065 (diff)
downloadhdf5-ef24087b1712260d970ec78731cdfbdde8e141e9.zip
hdf5-ef24087b1712260d970ec78731cdfbdde8e141e9.tar.gz
hdf5-ef24087b1712260d970ec78731cdfbdde8e141e9.tar.bz2
Remove H5F_evict_tagged_metadata() (#3165)
The rest of the library just calls H5AC_evict_tagged_metadata() directly.
Diffstat (limited to 'src/H5Fio.c')
-rw-r--r--src/H5Fio.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/H5Fio.c b/src/H5Fio.c
index e258d71..8feacf4 100644
--- a/src/H5Fio.c
+++ b/src/H5Fio.c
@@ -442,33 +442,6 @@ done:
} /* end H5F_flush_tagged_metadata */
/*-------------------------------------------------------------------------
- * Function: H5F_evict_tagged_metadata
- *
- * Purpose: Evicts metadata from the cache with specified tag.
- *
- * Return: Non-negative on success/Negative on failure
- *
- * Programmer: Mike McGreevy
- * September 9, 2010
- *
- *-------------------------------------------------------------------------
- */
-herr_t
-H5F_evict_tagged_metadata(H5F_t *f, haddr_t tag)
-{
- herr_t ret_value = SUCCEED;
-
- FUNC_ENTER_NOAPI(FAIL)
-
- /* Evict the object's metadata */
- if (H5AC_evict_tagged_metadata(f, tag, TRUE) < 0)
- HGOTO_ERROR(H5E_CACHE, H5E_CANTEXPUNGE, FAIL, "unable to evict tagged metadata")
-
-done:
- FUNC_LEAVE_NOAPI(ret_value)
-} /* end H5F_evict_tagged_metadata */
-
-/*-------------------------------------------------------------------------
* Function: H5F__evict_cache_entries
*
* Purpose: To evict all cache entries except the pinned superblock entry