summaryrefslogtreecommitdiffstats
path: root/src/H5FDprivate.h
diff options
context:
space:
mode:
authorVailin Choi <vchoi@jam.ad.hdfgroup.org>2018-09-04 21:53:45 (GMT)
committerVailin Choi <vchoi@jam.ad.hdfgroup.org>2018-09-04 21:53:45 (GMT)
commitc8b38985ff8f6cf38ada4a4d13e6d977aec260d5 (patch)
tree4252325963727fb96e818a648a6fde0e6e9a0270 /src/H5FDprivate.h
parent1daccbded796d1474ff95458948875c635df6622 (diff)
downloadhdf5-c8b38985ff8f6cf38ada4a4d13e6d977aec260d5.zip
hdf5-c8b38985ff8f6cf38ada4a4d13e6d977aec260d5.tar.gz
hdf5-c8b38985ff8f6cf38ada4a4d13e6d977aec260d5.tar.bz2
Bug fixes for the previous checkin.
Diffstat (limited to 'src/H5FDprivate.h')
-rw-r--r--src/H5FDprivate.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5FDprivate.h b/src/H5FDprivate.h
index 3bb300f..88c01ea 100644
--- a/src/H5FDprivate.h
+++ b/src/H5FDprivate.h
@@ -87,9 +87,9 @@
)
/* Retries for metadata file */
-#define H5FD_VFD_SWMR_MD_FILE_RETRY_MAX 200 /* Maximum retries when opening the MD file */
-#define H5FD_VFD_SWMR_MD_LOAD_RETRY_MAX 50 /* Maximum retries when trying to load the MD file header and index */
-#define H5FD_VFD_SWMR_MD_HEADER_RETRY_MAX 200 /* Maximum retries when deserializing the MD file header */
+#define H5FD_VFD_SWMR_MD_FILE_RETRY_MAX 50 /* Maximum retries when opening the MD file */
+#define H5FD_VFD_SWMR_MD_LOAD_RETRY_MAX 20 /* Maximum retries when trying to load the MD file header and index */
+#define H5FD_VFD_SWMR_MD_HEADER_RETRY_MAX 40 /* Maximum retries when deserializing the MD file header */
#define H5FD_VFD_SWMR_MD_INDEX_RETRY_MAX 5 /* Maximum retries when deserializing the MD file index */
@@ -274,7 +274,7 @@ H5_DLL herr_t H5FD_set_paged_aggr(H5FD_t *file, hbool_t paged);
/* Function prototypes for VFD SWMR */
H5_DLL herr_t H5FD_vfd_swmr_writer_end_of_tick();
H5_DLL herr_t H5FD_vfd_swmr_reader_end_of_tick();
-H5_DLL herr_t H5FD_vfd_swmr_get_tick_and_idx(H5FD_t *_file, hbool_t open, hbool_t read_index,
+H5_DLL herr_t H5FD_vfd_swmr_get_tick_and_idx(H5FD_t *_file, hbool_t read_index,
uint64_t *tick_ptr, uint32_t *num_entries_ptr, H5FD_vfd_swmr_idx_entry_t index[]);
/* Function prototypes for MPI based VFDs*/