summaryrefslogtreecommitdiffstats
path: root/src/H5Fquery.c
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-01-30 23:27:59 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-01-30 23:27:59 (GMT)
commit57fe4a52a265edb642855a5be11d0ccd7c4b1b97 (patch)
tree96cd1fde68386194847b367c62165d775414de50 /src/H5Fquery.c
parent590c51b68c61e5e35097523f96d3d9b0bb43a083 (diff)
downloadhdf5-57fe4a52a265edb642855a5be11d0ccd7c4b1b97.zip
hdf5-57fe4a52a265edb642855a5be11d0ccd7c4b1b97.tar.gz
hdf5-57fe4a52a265edb642855a5be11d0ccd7c4b1b97.tar.bz2
Consolidate shadow-file allocation code in H5MV.c.
Diffstat (limited to 'src/H5Fquery.c')
-rw-r--r--src/H5Fquery.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/H5Fquery.c b/src/H5Fquery.c
index cae9429..d269396 100644
--- a/src/H5Fquery.c
+++ b/src/H5Fquery.c
@@ -1365,27 +1365,3 @@ H5F_use_vfd_swmr(const H5F_t *f)
FUNC_LEAVE_NOAPI(f->shared->vfd_swmr)
} /* end H5F_use_vfd_swmr() */
-
-
-/*-------------------------------------------------------------------------
- * Function: H5F_get_vfd_swmr_md_eoa
- *
- * Purpose: Quick and dirty routine to retrieve the EOA for the metadata file
- * (Mainly added to stop non-file routines from poking about in the
- * H5F_t data structure)
- *
- * Return: The EOA for the metadata file
- *-------------------------------------------------------------------------
- */
-haddr_t
-H5F_get_vfd_swmr_md_eoa(const H5F_t *f)
-{
- /* Use FUNC_ENTER_NOAPI_NOINIT_NOERR here to avoid performance issues */
- FUNC_ENTER_NOAPI_NOINIT_NOERR
-
- HDassert(f);
- HDassert(f->shared);
- HDassert(f->shared->vfd_swmr);
-
- FUNC_LEAVE_NOAPI(f->shared->vfd_swmr_md_eoa)
-} /* end H5F_get_vfd_swmr_md_eof() */