summaryrefslogtreecommitdiffstats
path: root/src/H5AC.c
diff options
context:
space:
mode:
authorVailin Choi <vchoi@jam.ad.hdfgroup.org>2019-11-14 19:15:23 (GMT)
committerVailin Choi <vchoi@jam.ad.hdfgroup.org>2019-11-14 19:15:23 (GMT)
commit227688c9cd99577df8dcba63875dca513593c739 (patch)
treedaf9c80f16bc6fee83bdeb51020d4180b97af824 /src/H5AC.c
parentf2bb4e3dbc04d450098e0466e120a3f8a26d228c (diff)
downloadhdf5-227688c9cd99577df8dcba63875dca513593c739.zip
hdf5-227688c9cd99577df8dcba63875dca513593c739.tar.gz
hdf5-227688c9cd99577df8dcba63875dca513593c739.tar.bz2
Modifications for the following items in the punch list:
(A) #5: Add the "pb_expansion_threshold" field to the "H5F_vfd_swmr_config_t" structure and update H5Pset_vfd_swmr_config() and H5Pget_vfd_swmr_config() accordingly (B) #13 bullet 2: Comment H5F_vfd_swmr_config_t in H5Fpublic.h properly (copied from John's description in the RFC) (C) Change the field name "vfd_swmr_writer" to "writer" in "struct H5F_vfd_swmr_config_t" (as indicated on page 11 in the RFC) and all references to it
Diffstat (limited to 'src/H5AC.c')
-rw-r--r--src/H5AC.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5AC.c b/src/H5AC.c
index a2ec13b..34b9e1b 100644
--- a/src/H5AC.c
+++ b/src/H5AC.c
@@ -427,7 +427,7 @@ H5AC_create(const H5F_t *f, H5AC_cache_config_t *config_ptr, H5AC_cache_image_co
* specified.
*/
if ( ( H5F_VFD_SWMR_CONFIG(f) ) &&
- ( !f->shared->vfd_swmr_config.vfd_swmr_writer ) ) {
+ ( !f->shared->vfd_swmr_config.writer ) ) {
HDassert(!(H5F_INTENT(f) & H5F_ACC_RDWR));
HDassert(f->shared->fs_page_size > 0);