diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2018-03-30 08:11:19 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2018-03-30 08:11:19 (GMT) |
commit | b8f56d22dfd754715d10accc5997fe923bdb7593 (patch) | |
tree | 91d139d70c5dd1a5846999d3d0478bc1464eb66a /src/H5Fprivate.h | |
parent | 73acad2919ad9bcb56e7d6e8b495fa6354b28c5e (diff) | |
download | hdf5-b8f56d22dfd754715d10accc5997fe923bdb7593.zip hdf5-b8f56d22dfd754715d10accc5997fe923bdb7593.tar.gz hdf5-b8f56d22dfd754715d10accc5997fe923bdb7593.tar.bz2 |
Created internal functions for a couple of H5F calls.
Diffstat (limited to 'src/H5Fprivate.h')
-rw-r--r-- | src/H5Fprivate.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h index 28ebbd2..a53ca24 100644 --- a/src/H5Fprivate.h +++ b/src/H5Fprivate.h @@ -723,6 +723,7 @@ typedef enum H5F_mem_page_t { H5_DLL H5F_t *H5F_open(const char *name, unsigned flags, hid_t fcpl_id, hid_t fapl_id, hid_t dxpl_id); H5_DLL herr_t H5F_try_close(H5F_t *f, hbool_t *was_closed/*out*/); +H5_DLL herr_t H5F_start_swmr_write(H5F_t *file); /* Functions that retrieve values from the file struct */ H5_DLL H5F_libver_t H5F_get_low_bound(const H5F_t *f); @@ -817,6 +818,7 @@ H5_DLL herr_t H5F_get_checksums(const uint8_t *buf, size_t chk_size, uint32_t *s /* Routine to track the # of retries */ H5_DLL herr_t H5F_track_metadata_read_retries(H5F_t *f, unsigned actype, unsigned retries); H5_DLL herr_t H5F_set_retries(H5F_t *f); +H5_DLL herr_t H5F_get_metadata_read_retry_info(H5F_t *file, H5F_retry_info_t *info); /* Routine to invoke callback function upon object flush */ H5_DLL herr_t H5F_object_flush_cb(H5F_t *f, hid_t obj_id); |