diff options
author | Dan Wells <dwells@cs.uiuc.edu> | 2001-03-13 18:28:03 (GMT) |
---|---|---|
committer | Dan Wells <dwells@cs.uiuc.edu> | 2001-03-13 18:28:03 (GMT) |
commit | a5d53d6dacb5809ebb320ceae9b0e516aa8952a3 (patch) | |
tree | 9651c64155409d012f0851689e89e3fd21c534ad /pablo/HDFmpioProtos.h | |
parent | 6c915a1fa6297bc7cbc08af7baa17274f1a9e492 (diff) | |
download | hdf5-a5d53d6dacb5809ebb320ceae9b0e516aa8952a3.zip hdf5-a5d53d6dacb5809ebb320ceae9b0e516aa8952a3.tar.gz hdf5-a5d53d6dacb5809ebb320ceae9b0e516aa8952a3.tar.bz2 |
[svn-r3619]
Purpose:
These changes allow the user to determine bytes requested and bytes
received by MPI I/O calls.
Description:
User wished to know if the number of bytes requested in MPI I/O calls was
save as the number actually received.
Solution:
Added additional fields to the HDFrecord structure for bytes requested and
bytes received. Other files reflect these changes.
Platforms tested:
Solaris
IRIX64 parallel
Diffstat (limited to 'pablo/HDFmpioProtos.h')
-rw-r--r-- | pablo/HDFmpioProtos.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/pablo/HDFmpioProtos.h b/pablo/HDFmpioProtos.h index e5d33ef..01da37b 100644 --- a/pablo/HDFmpioProtos.h +++ b/pablo/HDFmpioProtos.h @@ -55,13 +55,6 @@ int HDF_MPI_File_write_at( MPI_File fh, MPI_Offset offset, void *buf, int HDF_MPI_File_write_at_all( MPI_File fh, MPI_Offset offset, void *buf, int count, MPI_Datatype datatype, MPI_Status *status ); - -int HDF_MPI_File_iread_at( MPI_File fh, MPI_Offset offset, void *buf, - int count, MPI_Datatype datatype, - MPIO_Request *request ); -int HDF_MPI_File_iwrite_at( MPI_File fh, MPI_Offset offset, void *buf, - int count, MPI_Datatype datatype, - MPIO_Request *request ); int HDF_MPI_File_read( MPI_File fh, void *buf, int count, MPI_Datatype datatype, MPI_Status *status ); int HDF_MPI_File_read_all( MPI_File fh, void *buf, int count, @@ -70,10 +63,6 @@ int HDF_MPI_File_write( MPI_File fh, void *buf, int count, MPI_Datatype datatype, MPI_Status *status ); int HDF_MPI_File_write_all( MPI_File fh, void *buf, int count, MPI_Datatype datatype, MPI_Status *status ); -int HDF_MPI_File_iread( MPI_File fh, void *buf, int count, - MPI_Datatype datatype, MPIO_Request *request ); -int HDF_MPI_File_iwrite( MPI_File fh, void *buf, int count, - MPI_Datatype datatype, MPIO_Request *request ); int HDF_MPI_File_seek( MPI_File fh, MPI_Offset offset, int whence ) ; int HDF_MPI_File_get_position( MPI_File fh, MPI_Offset *offset ); |