diff options
author | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2019-08-31 06:24:38 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2019-08-31 06:24:38 (GMT) |
commit | eef0cf26941072f449a8e332babcf21ee9eea128 (patch) | |
tree | 59b23c910202a1c937fd7054210addde4e77d976 /src/H5Fpkg.h | |
parent | fe3c4567f58a8558db098511ddafbc91e26015f1 (diff) | |
download | hdf5-eef0cf26941072f449a8e332babcf21ee9eea128.zip hdf5-eef0cf26941072f449a8e332babcf21ee9eea128.tar.gz hdf5-eef0cf26941072f449a8e332babcf21ee9eea128.tar.bz2 |
Move ext_path field in H5F_t to H5F_shared_t.
Remove unused routine H5F_set_coll_md_read().
Diffstat (limited to 'src/H5Fpkg.h')
-rw-r--r-- | src/H5Fpkg.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5Fpkg.h b/src/H5Fpkg.h index 1436c13..6cd2d3c 100644 --- a/src/H5Fpkg.h +++ b/src/H5Fpkg.h @@ -359,6 +359,8 @@ struct H5F_shared_t { H5F_object_flush_t object_flush; /* Information for object flush callback */ hbool_t crt_dset_min_ohdr_flag; /* flag to minimize created dataset object header */ + char *extpath; /* Path for searching target external link file */ + #ifdef H5_HAVE_PARALLEL H5P_coll_md_read_flag_t coll_md_read; /* Do all metadata reads collectively */ hbool_t coll_md_write; /* Do all metadata writes collectively */ @@ -374,7 +376,6 @@ struct H5F_shared_t { struct H5F_t { char *open_name; /* Name used to open file */ char *actual_name; /* Actual name of the file, after resolving symlinks, etc. */ - char *extpath; /* Path for searching target external link file */ H5F_shared_t *shared; /* The shared file info */ unsigned nopen_objs; /* Number of open object headers */ H5FO_t *obj_count; /* # of time each object is opened through top file structure */ |