summaryrefslogtreecommitdiffstats
path: root/src/H5FDmpio.h
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2023-10-08 01:16:30 (GMT)
committerGitHub <noreply@github.com>2023-10-08 01:16:30 (GMT)
commit6edd9a0aab0d80b64b6038ba2942315cdcc4d0db (patch)
tree1af0eb10740c59c87e14d8b11d32ae8f61894c48 /src/H5FDmpio.h
parent07347cc5dd62b75587eff7db30c6420de4b9b73f (diff)
downloadhdf5-6edd9a0aab0d80b64b6038ba2942315cdcc4d0db.zip
hdf5-6edd9a0aab0d80b64b6038ba2942315cdcc4d0db.tar.gz
hdf5-6edd9a0aab0d80b64b6038ba2942315cdcc4d0db.tar.bz2
Drop MPI-2 support (#3643)
Diffstat (limited to 'src/H5FDmpio.h')
-rw-r--r--src/H5FDmpio.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5FDmpio.h b/src/H5FDmpio.h
index 96a9366..60deec2 100644
--- a/src/H5FDmpio.h
+++ b/src/H5FDmpio.h
@@ -48,8 +48,8 @@ H5_DLL hid_t H5FD_mpio_init(void);
* \brief Stores MPI IO communicator information to the file access property list
*
* \fapl_id
- * \param[in] comm MPI-2 communicator
- * \param[in] info MPI-2 info object
+ * \param[in] comm MPI communicator
+ * \param[in] info MPI info object
* \returns \herr_t
*
* \details H5Pset_fapl_mpio() stores the user-supplied MPI IO parameters \p
@@ -61,12 +61,12 @@ H5_DLL hid_t H5FD_mpio_init(void);
* and is not a collective function.
*
* \p comm is the MPI communicator to be used for file open, as defined
- * in \c MPI_File_open of MPI-2. This function makes a duplicate of the
+ * in \c MPI_File_open of MPI. This function makes a duplicate of the
* communicator, so modifications to \p comm after this function call
* returns have no effect on the file access property list.
*
* \p info is the MPI Info object to be used for file open, as defined
- * in MPI_File_open() of MPI-2. This function makes a duplicate copy of
+ * in MPI_File_open() of MPI. This function makes a duplicate copy of
* the Info object, so modifications to the Info object after this
* function call returns will have no effect on the file access
* property list.
@@ -96,8 +96,8 @@ H5_DLL herr_t H5Pset_fapl_mpio(hid_t fapl_id, MPI_Comm comm, MPI_Info info);
* \brief Returns MPI IO communicator information
*
* \fapl_id
- * \param[out] comm MPI-2 communicator
- * \param[out] info MPI-2 info object
+ * \param[out] comm MPI communicator
+ * \param[out] info MPI info object
* \returns \herr_t
*
* \details If the file access property list is set to the #H5FD_MPIO driver,