summaryrefslogtreecommitdiffstats
path: root/src/H5FDmpio.h
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>1999-09-03 00:15:57 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>1999-09-03 00:15:57 (GMT)
commitcb0a0eb41eb61e75ddb7a10532e910394babe995 (patch)
treec0122b29efeacfc3d8da4c8b07bdd7ce0065db9e /src/H5FDmpio.h
parentd0c5506d95aee19238c21d5cde4ee19ba0539f2a (diff)
downloadhdf5-cb0a0eb41eb61e75ddb7a10532e910394babe995.zip
hdf5-cb0a0eb41eb61e75ddb7a10532e910394babe995.tar.gz
hdf5-cb0a0eb41eb61e75ddb7a10532e910394babe995.tar.bz2
[svn-r1627] Cleanup some minor bugs in the MPIO file-driver ported by Robb.
It is working now. Still need to tie up some loose ends.
Diffstat (limited to 'src/H5FDmpio.h')
-rw-r--r--src/H5FDmpio.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/H5FDmpio.h b/src/H5FDmpio.h
index 39431fc..fb61498 100644
--- a/src/H5FDmpio.h
+++ b/src/H5FDmpio.h
@@ -38,16 +38,16 @@ typedef struct H5FD_mpio_dxpl_t {
#ifdef HAVE_PARALLEL
__DLL__ hid_t H5FD_mpio_init(void);
__DLL__ herr_t H5Pset_fapl_mpio(hid_t fapl_id, MPI_Comm comm, MPI_Info info);
-__DLL__herr_t H5Pget_fapl_mpio(hid_t fapl_id, MPI_Comm *comm/*out*/,
+__DLL__ herr_t H5Pget_fapl_mpio(hid_t fapl_id, MPI_Comm *comm/*out*/,
MPI_Info *info/*out*/);
-__DLL__herr_t H5Pset_dxpl_mpio(hid_t dxpl_id, H5FD_mpio_xfer_t xfer_mode);
-__DLL__herr_t H5Pget_dxpl_mpio(hid_t dxpl_id, H5FD_mpio_xfer_t *xfer_mode/*out*/);
-__DLL__htri_t H5FD_mpio_tas_allsame(H5FD_t *_file, hbool_t newval);
-__DLL__MPI_Comm H5FD_mpio_communicator(H5FD_t *_file);
-__DLL__herr_t H5FD_mpio_setup(H5FD_t *_file, MPI_Datatype btype, MPI_Datatype ftype,
+__DLL__ herr_t H5Pset_dxpl_mpio(hid_t dxpl_id, H5FD_mpio_xfer_t xfer_mode);
+__DLL__ herr_t H5Pget_dxpl_mpio(hid_t dxpl_id, H5FD_mpio_xfer_t *xfer_mode/*out*/);
+__DLL__ htri_t H5FD_mpio_tas_allsame(H5FD_t *_file, hbool_t newval);
+__DLL__ MPI_Comm H5FD_mpio_communicator(H5FD_t *_file);
+__DLL__ herr_t H5FD_mpio_setup(H5FD_t *_file, MPI_Datatype btype, MPI_Datatype ftype,
haddr_t disp, hbool_t use_types);
-__DLL__herr_t H5FD_mpio_wait_for_left_neighbor(H5FD_t *file);
-__DLL__herr_t H5FD_mpio_signal_right_neighbor(H5FD_t *file);
+__DLL__ herr_t H5FD_mpio_wait_for_left_neighbor(H5FD_t *file);
+__DLL__ herr_t H5FD_mpio_signal_right_neighbor(H5FD_t *file);
#endif /*HAVE_PARALLEL*/