diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2006-02-21 14:14:22 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2006-02-21 14:14:22 (GMT) |
commit | a6038b946e77407caa54b15b6a2be405f52d1b08 (patch) | |
tree | 6a71978b01a1c84f4b4790bee6027cc5e095d980 /src/H5Dpkg.h | |
parent | 593f1a9a5178b0ab079f47f8f395cdba41f1a78c (diff) | |
download | hdf5-a6038b946e77407caa54b15b6a2be405f52d1b08.zip hdf5-a6038b946e77407caa54b15b6a2be405f52d1b08.tar.gz hdf5-a6038b946e77407caa54b15b6a2be405f52d1b08.tar.bz2 |
[svn-r11960] Purpose:
code clean up
Description:
Clean up some warnings in collective chunk IO code
Solution:
Platforms tested:
heping
Misc. update:
Diffstat (limited to 'src/H5Dpkg.h')
-rw-r--r-- | src/H5Dpkg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Dpkg.h b/src/H5Dpkg.h index df30800..615f728 100644 --- a/src/H5Dpkg.h +++ b/src/H5Dpkg.h @@ -344,11 +344,11 @@ H5_DLL herr_t H5D_mpio_select_write(H5D_io_info_t *io_info, H5_DLL herr_t H5D_contig_collective_io(H5D_io_info_t *io_info, const H5S_t *file_space,const H5S_t *mem_space, - void *_buf,hbool_t do_write); + const void *_buf,hbool_t do_write); /* MPI-IO function to handle chunked collective IO */ H5_DLL herr_t -H5D_chunk_collective_io(H5D_io_info_t * io_info,fm_map *fm, void*buf, +H5D_chunk_collective_io(H5D_io_info_t * io_info,fm_map *fm, const void*buf, hbool_t do_write); /* MPI-IO function to check if a direct I/O transfer is possible between * memory and the file */ |