diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-06-17 14:12:34 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-06-17 14:12:34 (GMT) |
commit | 2ae3f6b8669ce5dc19fe7e3d03eeb4728d8c9d1c (patch) | |
tree | 1578bd895a08baaafa9a773a2c024e5947c4091f /src/H5FDmpio.h | |
parent | 90abe2ed25ce5727bb479061185b8a44fd49db76 (diff) | |
download | hdf5-2ae3f6b8669ce5dc19fe7e3d03eeb4728d8c9d1c.zip hdf5-2ae3f6b8669ce5dc19fe7e3d03eeb4728d8c9d1c.tar.gz hdf5-2ae3f6b8669ce5dc19fe7e3d03eeb4728d8c9d1c.tar.bz2 |
[svn-r5650] Purpose:
Code cleanup
Description:
Change MPI-I/O code to use the address of the dataset for the displacement,
instead of having a separate displacement value. Removed displacement
parameter from H5FD_mpio_setup parameters.
Platforms tested:
Linux 2.2.x (eirene) w/parallel & IRIX64 6.5 (modi4) w/parallel.
Diffstat (limited to 'src/H5FDmpio.h')
-rw-r--r-- | src/H5FDmpio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDmpio.h b/src/H5FDmpio.h index 45e6069..2810bfb 100644 --- a/src/H5FDmpio.h +++ b/src/H5FDmpio.h @@ -58,7 +58,7 @@ __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__ 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); + 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__ int H5FD_mpio_mpi_rank(H5FD_t *_file); |