diff options
author | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2014-01-02 18:00:31 (GMT) |
---|---|---|
committer | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2014-01-02 18:00:31 (GMT) |
commit | d99a7dfe7db5abe777c5e376c377885c2377ff59 (patch) | |
tree | 28ebf2ab1db3e7506f9c7031d947dece5a1d8ca9 /src/H5VLiod_client.h | |
parent | 90f4424e0826b61449cf7a0a56c48f3c688f6d80 (diff) | |
download | hdf5-d99a7dfe7db5abe777c5e376c377885c2377ff59.zip hdf5-d99a7dfe7db5abe777c5e376c377885c2377ff59.tar.gz hdf5-d99a7dfe7db5abe777c5e376c377885c2377ff59.tar.bz2 |
[svn-r24605] - fix bug with point selections
- allow for H5S_ALL dataspace inputs
- allow use of scalar dataspaces
- update tests
Diffstat (limited to 'src/H5VLiod_client.h')
-rw-r--r-- | src/H5VLiod_client.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5VLiod_client.h b/src/H5VLiod_client.h index c4f9d2a..556e918 100644 --- a/src/H5VLiod_client.h +++ b/src/H5VLiod_client.h @@ -365,11 +365,11 @@ H5_DLL herr_t H5VL_iod_map_get_size(hid_t type_id, const void *buf, /*out*/size_t *size, /*out*/H5T_class_t *dt_class); H5_DLL herr_t H5VL_iod_gen_obj_id(int myrank, int nranks, uint64_t cur_index, iod_obj_type_t type, uint64_t *id); -H5_DLL herr_t H5VL_iod_pre_write(hid_t type_id, hid_t space_id, const void *buf, +H5_DLL herr_t H5VL_iod_pre_write(hid_t type_id, struct H5S_t *space, const void *buf, /*out*/uint64_t *_checksum, /*out*/hg_bulk_t *bulk_handle, /*out*/size_t **vl_str_len); -H5_DLL herr_t H5VL_iod_pre_read(hid_t type_id, hid_t space_id, const void *buf, +H5_DLL herr_t H5VL_iod_pre_read(hid_t type_id, struct H5S_t *space, const void *buf, /*out*/hg_bulk_t *bulk_handle, hbool_t *is_vl_data); /* private routines for map objects */ |