summaryrefslogtreecommitdiffstats
path: root/src/H5Spkg.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2004-04-07 19:10:59 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2004-04-07 19:10:59 (GMT)
commitad62490f6c3bcd6dcb95ab8095b1b3088b3fa4e2 (patch)
tree29ead8bd1fdc974bc487c5f81ac701ec99be42e3 /src/H5Spkg.h
parentdedb402f2ecf65e2f5a43bc64d3fd66690961c7d (diff)
downloadhdf5-ad62490f6c3bcd6dcb95ab8095b1b3088b3fa4e2.zip
hdf5-ad62490f6c3bcd6dcb95ab8095b1b3088b3fa4e2.tar.gz
hdf5-ad62490f6c3bcd6dcb95ab8095b1b3088b3fa4e2.tar.bz2
[svn-r8317] Purpose:
Code optimization Description: Query the dataset creation and transfer properties less often. Platforms tested: Solaris 2.7 (arabica) FreeBSD 4.9 (sleipnir) w/parallel h5committested
Diffstat (limited to 'src/H5Spkg.h')
-rw-r--r--src/H5Spkg.h24
1 files changed, 10 insertions, 14 deletions
diff --git a/src/H5Spkg.h b/src/H5Spkg.h
index e23cda9..5d73fa2 100644
--- a/src/H5Spkg.h
+++ b/src/H5Spkg.h
@@ -261,22 +261,18 @@ H5_DLL herr_t H5S_none_get_seq_list(const H5S_t *space, unsigned flags,
#ifdef H5_HAVE_PARALLEL
/* MPI-IO function to read directly from app buffer to file rky980813 */
-H5_DLL herr_t H5S_mpio_spaces_read(H5F_t *f,
- const struct H5O_layout_t *layout,
- H5P_genplist_t *dc_plist,
- const H5D_storage_t *store,
- size_t elmt_size, const H5S_t *file_space,
- const H5S_t *mem_space, hid_t dxpl_id,
- void *buf/*out*/);
+H5_DLL herr_t H5S_mpio_spaces_read(H5F_t *f, const struct H5O_layout_t *layout,
+ const H5D_dcpl_cache_t *dcpl_cache, const H5D_storage_t *store,
+ size_t elmt_size, const H5S_t *file_space,
+ const H5S_t *mem_space, const H5D_dxpl_cache_t *dxpl_cache, hid_t dxpl_id,
+ void *buf/*out*/);
/* MPI-IO function to write directly from app buffer to file rky980813 */
-H5_DLL herr_t H5S_mpio_spaces_write(H5F_t *f,
- struct H5O_layout_t *layout,
- H5P_genplist_t *dc_plist,
- const H5D_storage_t *store,
- size_t elmt_size, const H5S_t *file_space,
- const H5S_t *mem_space, hid_t dxpl_id,
- const void *buf);
+H5_DLL herr_t H5S_mpio_spaces_write(H5F_t *f, struct H5O_layout_t *layout,
+ const H5D_dcpl_cache_t *dcpl_cache, const H5D_storage_t *store,
+ size_t elmt_size, const H5S_t *file_space,
+ const H5S_t *mem_space, const H5D_dxpl_cache_t *dxpl_cache, hid_t dxpl_id,
+ const void *buf);
/* MPI-IO function to check if a direct I/O transfer is possible between
* memory and the file */