diff options
author | Vailin Choi <vchoi@hdfgroup.org> | 2019-09-03 02:27:19 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@hdfgroup.org> | 2019-09-03 02:27:19 (GMT) |
commit | ec90f311060e4d939470996f5593b0e88780fc28 (patch) | |
tree | bb75e97ce7a1688d5f2b1e513e7bfbad619e7727 /src/H5Fquery.c | |
parent | 373df11c469e6c4b131b3859bf3856ac94892e8a (diff) | |
parent | 62750441cdfbf17f7fa5db3bbf1320c1dc5be838 (diff) | |
download | hdf5-ec90f311060e4d939470996f5593b0e88780fc28.zip hdf5-ec90f311060e4d939470996f5593b0e88780fc28.tar.gz hdf5-ec90f311060e4d939470996f5593b0e88780fc28.tar.bz2 |
Merge pull request #1914 in HDFFV/hdf5 from ~VCHOI/my_third_fork:bugfix/shared_file_pointer to develop
* commit '62750441cdfbf17f7fa5db3bbf1320c1dc5be838':
Add comment to add tests later to verify conflicting values for MPI-specific properties on multiple opens.
Move ext_path field in H5F_t to H5F_shared_t. Remove unused routine H5F_set_coll_md_read().
Move coll_md_read and coll_md_write fields in H5F_t to H5F_shared_t.
Diffstat (limited to 'src/H5Fquery.c')
-rw-r--r-- | src/H5Fquery.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Fquery.c b/src/H5Fquery.c index c885561..f36f348 100644 --- a/src/H5Fquery.c +++ b/src/H5Fquery.c @@ -229,9 +229,9 @@ H5F_get_extpath(const H5F_t *f) FUNC_ENTER_NOAPI_NOINIT_NOERR HDassert(f); - HDassert(f->extpath); + HDassert(f->shared->extpath); - FUNC_LEAVE_NOAPI(f->extpath) + FUNC_LEAVE_NOAPI(f->shared->extpath) } /* end H5F_get_extpath() */ @@ -1095,7 +1095,7 @@ H5F_coll_md_read(const H5F_t *f) HDassert(f); - FUNC_LEAVE_NOAPI(f->coll_md_read) + FUNC_LEAVE_NOAPI(f->shared->coll_md_read) } /* end H5F_coll_md_read() */ #endif /* H5_HAVE_PARALLEL */ |