summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2001-01-10 07:14:43 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2001-01-10 07:14:43 (GMT)
commitcd864ac9d36aad7c3d54a5a586fa045a2e880a2f (patch)
treeb9f6db82aa16efd1bb1aa692f303fc5578f1aac1 /src
parent757525241d2f84dfa4225f84f54597b9c5c82506 (diff)
downloadhdf5-cd864ac9d36aad7c3d54a5a586fa045a2e880a2f.zip
hdf5-cd864ac9d36aad7c3d54a5a586fa045a2e880a2f.tar.gz
hdf5-cd864ac9d36aad7c3d54a5a586fa045a2e880a2f.tar.bz2
[svn-r3256] Purpose:
Typo fix and comment Description: The FUNC_ENTER of H5FD_mpio_flush had a wrong function name. Corrected it. Also filled in the missing original author name. Added a 'this is collective.' to all collective functions. Platforms tested: It was just editing. Can't go wrong. :-)
Diffstat (limited to 'src')
-rw-r--r--src/H5FDmpio.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/H5FDmpio.c b/src/H5FDmpio.c
index db451eb..ee3ecea 100644
--- a/src/H5FDmpio.c
+++ b/src/H5FDmpio.c
@@ -187,8 +187,7 @@ H5FD_mpio_init(void)
* Purpose: Store the user supplied MPIO communicator COMM and INFO in
* the file access property list FAPL_ID which can then be used
* to create and/or open the file. This function is available
- * only in the parallel HDF5 library and is not a collective
- * function.
+ * only in the parallel HDF5 library and is not collective.
*
* COMM is the MPI communicator to be used for file open as
* defined in MPI_FILE_OPEN of MPI-2. This function does not
@@ -360,7 +359,7 @@ H5Pset_dxpl_mpio(hid_t dxpl_id, H5FD_mpio_xfer_t xfer_mode)
* Function: H5Pget_dxpl_mpio
*
* Purpose: Queries the transfer mode current set in the data transfer
- * property list DXPL_ID. This is not a collective function.
+ * property list DXPL_ID. This is not collective.
*
* Return: Success: Non-negative, with the transfer mode returned
* through the XFER_MODE argument if it is
@@ -659,7 +658,7 @@ H5FD_mpio_fapl_get(H5FD_t *_file)
* are defined in H5Fpublic.h. The file access property list
* FAPL_ID contains the properties driver properties and MAXADDR
* is the largest address which this file will be expected to
- * access.
+ * access. This is collective.
*
* Return: Success: A new file pointer.
*
@@ -829,7 +828,7 @@ H5FD_mpio_open(const char *name, unsigned flags, hid_t fapl_id,
/*-------------------------------------------------------------------------
* Function: H5FD_mpio_close
*
- * Purpose: Closes a file.
+ * Purpose: Closes a file. This is collective.
*
* Return: Success: Non-negative
*
@@ -1482,7 +1481,7 @@ done:
/*-------------------------------------------------------------------------
* Function: H5FD_mpio_flush
*
- * Purpose: Makes sure that all data is on disk.
+ * Purpose: Makes sure that all data is on disk. This is collective.
*
* Return: Success: Non-negative
*
@@ -1512,7 +1511,7 @@ H5FD_mpio_flush(H5FD_t *_file)
MPI_Status mpi_stat;
MPI_Offset mpi_off;
- FUNC_ENTER(H5FD_family_flush, FAIL);
+ FUNC_ENTER(H5FD_mpio_flush, FAIL);
#ifdef H5FDmpio_DEBUG
if (H5FD_mpio_Debug[(int)'t'])