summaryrefslogtreecommitdiffstats
path: root/src/H5Fint.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/H5Fint.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/H5Fint.c')
-rw-r--r--src/H5Fint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Fint.c b/src/H5Fint.c
index 9fad5bd..e4eb4a0 100644
--- a/src/H5Fint.c
+++ b/src/H5Fint.c
@@ -3677,7 +3677,7 @@ H5F__vfd_swmr_init(H5F_t *f, hbool_t file_create)
if(H5F_INTENT(f) & H5F_ACC_RDWR) {
- HDassert(f->shared->vfd_swmr_config.vfd_swmr_writer);
+ HDassert(f->shared->vfd_swmr_config.writer);
vfd_swmr_writer_g = f->shared->vfd_swmr_writer = TRUE;
tick_num_g = f->shared->tick_num = 1;
@@ -3731,7 +3731,7 @@ H5F__vfd_swmr_init(H5F_t *f, hbool_t file_create)
} else { /* VFD SWMR reader */
- HDassert(!f->shared->vfd_swmr_config.vfd_swmr_writer);
+ HDassert(!f->shared->vfd_swmr_config.writer);
vfd_swmr_writer_g = f->shared->vfd_swmr_writer = FALSE;