diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2017-12-05 18:41:54 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2017-12-05 18:41:54 (GMT) |
commit | ec1e00a55f7b005fa9d87f92e58bc312286d0b8a (patch) | |
tree | 55b85edb49d58f271d0f249d8a047866428d2f63 /src/H5Fmount.c | |
parent | 853ae26333592faf69cd8c454ef92ffea8549df5 (diff) | |
download | hdf5-ec1e00a55f7b005fa9d87f92e58bc312286d0b8a.zip hdf5-ec1e00a55f7b005fa9d87f92e58bc312286d0b8a.tar.gz hdf5-ec1e00a55f7b005fa9d87f92e58bc312286d0b8a.tar.bz2 |
Normalization with VOL integration branch.
Diffstat (limited to 'src/H5Fmount.c')
-rw-r--r-- | src/H5Fmount.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/H5Fmount.c b/src/H5Fmount.c index 3cd5c21..17d7850 100644 --- a/src/H5Fmount.c +++ b/src/H5Fmount.c @@ -25,9 +25,6 @@ #include "H5MMprivate.h" /* Memory management */ /* PRIVATE PROTOTYPES */ -static herr_t H5F_mount(H5G_loc_t *loc, const char *name, H5F_t *child, - hid_t plist_id, hid_t dxpl_id); -static herr_t H5F_unmount(H5G_loc_t *loc, const char *name, hid_t dxpl_id); static void H5F_mount_count_ids_recurse(H5F_t *f, unsigned *nopen_files, unsigned *nopen_objs); @@ -99,7 +96,7 @@ done: * *------------------------------------------------------------------------- */ -static herr_t +herr_t H5F_mount(H5G_loc_t *loc, const char *name, H5F_t *child, hid_t H5_ATTR_UNUSED plist_id, hid_t dxpl_id) { @@ -265,7 +262,7 @@ done: * *------------------------------------------------------------------------- */ -static herr_t +herr_t H5F_unmount(H5G_loc_t *loc, const char *name, hid_t dxpl_id) { H5G_t *child_group = NULL; /* Child's group in parent mtab */ |