summaryrefslogtreecommitdiffstats
path: root/src/H5Fmpio.c
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1998-10-27 03:56:31 (GMT)
committerRobb Matzke <matzke@llnl.gov>1998-10-27 03:56:31 (GMT)
commit1203b1652882a33781ae501dc004f9adb3bef37a (patch)
treeddf1e4d7fc82d8ee10a27d6f63726d1ff25d8ddc /src/H5Fmpio.c
parentcd6234d0a02325bc45036b958077e008c4a70fc2 (diff)
downloadhdf5-1203b1652882a33781ae501dc004f9adb3bef37a.zip
hdf5-1203b1652882a33781ae501dc004f9adb3bef37a.tar.gz
hdf5-1203b1652882a33781ae501dc004f9adb3bef37a.tar.bz2
[svn-r802] Misc. white space adjustments here and there, mostly in comments.
Diffstat (limited to 'src/H5Fmpio.c')
-rw-r--r--src/H5Fmpio.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/H5Fmpio.c b/src/H5Fmpio.c
index 55080dc..f63ca07 100644
--- a/src/H5Fmpio.c
+++ b/src/H5Fmpio.c
@@ -100,19 +100,21 @@ static int H5F_mpio_Debug[256] =
#endif
static htri_t H5F_mpio_access(const char *name,
- const H5F_access_t *access_parms, int mode,
- H5F_search_t *key/*out*/);
+ const H5F_access_t *access_parms, int mode,
+ H5F_search_t *key/*out*/);
static H5F_low_t *H5F_mpio_open(const char *name,
const H5F_access_t *access_parms, uintn flags,
H5F_search_t *key/*out*/);
static herr_t H5F_mpio_close(H5F_low_t *lf, const H5F_access_t *access_parms);
static herr_t H5F_mpio_read(H5F_low_t *lf, H5F_access_t *access_parms,
const H5D_transfer_t xfer_mode,
- const haddr_t *addr, size_t size, uint8 *buf/*out*/);
+ const haddr_t *addr, size_t size,
+ uint8 *buf/*out*/);
htri_t H5F_mpio_tas_allsame(H5F_low_t *lf, hbool_t newval );
static herr_t H5F_mpio_write(H5F_low_t *lf, H5F_access_t *access_parms,
const H5D_transfer_t xfer_mode,
- const haddr_t *addr, size_t size, const uint8 *buf);
+ const haddr_t *addr, size_t size,
+ const uint8 *buf);
static herr_t H5F_mpio_flush(H5F_low_t *lf, const H5F_access_t *access_parms);
static herr_t H5F_MPIOff_to_haddr(MPI_Offset mpi_off, haddr_t *addr);
static herr_t H5F_haddr_to_MPIOff(haddr_t addr, MPI_Offset *mpi_off);
@@ -942,7 +944,7 @@ H5F_mpio_flush(H5F_low_t *lf, const H5F_access_t __unused__ *access_parms)
* Problems and limitations:
*
* Return: Non-negative on success (the haddr_t contains the converted
- * value) /Negative on failure (the haddr_t is undefined)
+ * value). Negative on failure (the haddr_t is undefined).
*
* Programmer:
* January 30, 1998
@@ -971,7 +973,7 @@ H5F_MPIOff_to_haddr( MPI_Offset mpi_off, haddr_t *addr )
* Problems and limitations:
*
* Return: Non-negative on success (the MPIOffset contains the converted
- * value.) /Negative on failure (the MPIOffset is undefined.)
+ * value). Negative on failure (the MPIOffset is undefined).
*
* Programmer:
* January 30, 1998