diff options
author | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2019-11-14 19:15:23 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2019-11-14 19:15:23 (GMT) |
commit | 227688c9cd99577df8dcba63875dca513593c739 (patch) | |
tree | daf9c80f16bc6fee83bdeb51020d4180b97af824 /tools/lib | |
parent | f2bb4e3dbc04d450098e0466e120a3f8a26d228c (diff) | |
download | hdf5-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 'tools/lib')
-rw-r--r-- | tools/lib/h5tools.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tools/lib/h5tools.c b/tools/lib/h5tools.c index a1bd5c9..af3f71d 100644 --- a/tools/lib/h5tools.c +++ b/tools/lib/h5tools.c @@ -461,11 +461,8 @@ swmr_fapl_augment(hid_t fapl, const char *fname) 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; -#if 0 - config->md_open_tries = 1; -#endif if ((tname = strdup(fname)) == NULL) { HDfprintf(rawerrorstream, "temporary string allocation failed\n"); |