summaryrefslogtreecommitdiffstats
path: root/test/vfd_swmr_reader.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 /test/vfd_swmr_reader.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 'test/vfd_swmr_reader.c')
-rw-r--r--test/vfd_swmr_reader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/vfd_swmr_reader.c b/test/vfd_swmr_reader.c
index 0308ee4..fe1d91f 100644
--- a/test/vfd_swmr_reader.c
+++ b/test/vfd_swmr_reader.c
@@ -311,7 +311,7 @@ read_records(const char *filename, hbool_t verbose, FILE *verbose_file,
config->version = H5F__CURR_VFD_SWMR_CONFIG_VERSION;
config->tick_len = 4;
config->max_lag = 5;
- config->vfd_swmr_writer = FALSE;
+ config->writer = FALSE;
config->md_pages_reserved = 128;
HDstrcpy(config->md_file_path, "./my_md_file");