summaryrefslogtreecommitdiffstats
path: root/src/H5FD.c
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-08-20 15:14:48 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-08-20 15:14:48 (GMT)
commitcd9c80925e1612cf7a4c996fef99dc8632b8b520 (patch)
treedd82004693898c1d1d8b70833671c46a1369abf2 /src/H5FD.c
parent38310e91760795632252aecddc294139fc00c449 (diff)
downloadhdf5-cd9c80925e1612cf7a4c996fef99dc8632b8b520.zip
hdf5-cd9c80925e1612cf7a4c996fef99dc8632b8b520.tar.gz
hdf5-cd9c80925e1612cf7a4c996fef99dc8632b8b520.tar.bz2
Delete disused routine H5FD_has_conflict().
Diffstat (limited to 'src/H5FD.c')
-rw-r--r--src/H5FD.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/H5FD.c b/src/H5FD.c
index 600a825..c8b8da2 100644
--- a/src/H5FD.c
+++ b/src/H5FD.c
@@ -746,24 +746,6 @@ finish:
return deduped;
}
-/* Return `true` if a second H5FD_t identical to `file`
- * has an exclusive owner, `false` otherwise.
- */
-bool
-H5FD_has_conflict(H5FD_t *file)
-{
- H5FD_t *item;
-
- TAILQ_FOREACH(item, &all_vfds, link) {
- // skip "self", skip unowned
- if (item == file || item->exc_owner == NULL)
- continue;
- if (H5FDcmp(file, item) == 0)
- return true;
- }
- return false;
-}
-
/*-------------------------------------------------------------------------
* Function: H5FD_open