diff options
author | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2012-03-21 21:00:48 (GMT) |
---|---|---|
committer | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2012-03-21 21:00:48 (GMT) |
commit | dd1b2c3208ecb4969ad854a65e2261bced518698 (patch) | |
tree | fcbf369b09c49439974678efbe12e2bf290ce8cb /src/H5Fpublic.h | |
parent | d476ce138bbb78d3f7bf22a21172724f6519a1cf (diff) | |
download | hdf5-dd1b2c3208ecb4969ad854a65e2261bced518698.zip hdf5-dd1b2c3208ecb4969ad854a65e2261bced518698.tar.gz hdf5-dd1b2c3208ecb4969ad854a65e2261bced518698.tar.bz2 |
[svn-r22115] Add 2 new API routines to set/unset file atomicity for files opened with the MPI-IO VFD
Add test cases for these two routines
Jira issue HDFFV-7961
Diffstat (limited to 'src/H5Fpublic.h')
-rw-r--r-- | src/H5Fpublic.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/H5Fpublic.h b/src/H5Fpublic.h index 75a3547..d88538b 100644 --- a/src/H5Fpublic.h +++ b/src/H5Fpublic.h @@ -208,6 +208,10 @@ H5_DLL herr_t H5Fget_info2(hid_t obj_id, H5F_info2_t *finfo); H5_DLL ssize_t H5Fget_free_sections(hid_t file_id, H5F_mem_t type, size_t nsects, H5F_sect_info_t *sect_info/*out*/); H5_DLL herr_t H5Fclear_elink_file_cache(hid_t file_id); +#ifdef H5_HAVE_PARALLEL +H5_DLL herr_t H5Fset_mpi_atomicity(hid_t file_id, hbool_t flag); +H5_DLL herr_t H5Fget_mpi_atomicity(hid_t file_id, hbool_t *flag); +#endif /* H5_HAVE_PARALLEL */ /* Symbols defined for compatibility with previous versions of the HDF5 API. * |