summaryrefslogtreecommitdiffstats
path: root/src/H5Dcompact.c
diff options
context:
space:
mode:
authorNeil Fortner <nfortne2@hdfgroup.org>2021-09-16 19:43:57 (GMT)
committerGitHub <noreply@github.com>2021-09-16 19:43:57 (GMT)
commitc1e73fd70ff3c49b05712a3fb7329f82fae3401c (patch)
treea871d249a660cfda3648e381a7bf69417ad5a4ed /src/H5Dcompact.c
parent19f94643389881e1f2c27c688c405f9ba5568c18 (diff)
parent2023495f320ed22febe41eb6c95a4bc687a8b676 (diff)
downloadhdf5-c1e73fd70ff3c49b05712a3fb7329f82fae3401c.zip
hdf5-c1e73fd70ff3c49b05712a3fb7329f82fae3401c.tar.gz
hdf5-c1e73fd70ff3c49b05712a3fb7329f82fae3401c.tar.bz2
Merge pull request #986 from fortnern/parallel_selection_io
Add support for independent parallel I/O with selection I/O
Diffstat (limited to 'src/H5Dcompact.c')
-rw-r--r--src/H5Dcompact.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Dcompact.c b/src/H5Dcompact.c
index fe41298..9a6d4b2 100644
--- a/src/H5Dcompact.c
+++ b/src/H5Dcompact.c
@@ -54,7 +54,7 @@
/* Layout operation callbacks */
static herr_t H5D__compact_construct(H5F_t *f, H5D_t *dset);
static hbool_t H5D__compact_is_space_alloc(const H5O_storage_t *storage);
-static herr_t H5D__compact_io_init(const H5D_io_info_t *io_info, const H5D_type_info_t *type_info,
+static herr_t H5D__compact_io_init(H5D_io_info_t *io_info, const H5D_type_info_t *type_info,
hsize_t nelmts, const H5S_t *file_space, const H5S_t *mem_space,
H5D_chunk_map_t *cm);
static ssize_t H5D__compact_readvv(const H5D_io_info_t *io_info, size_t dset_max_nseq, size_t *dset_curr_seq,
@@ -227,7 +227,7 @@ H5D__compact_is_space_alloc(const H5O_storage_t H5_ATTR_UNUSED *storage)
*-------------------------------------------------------------------------
*/
static herr_t
-H5D__compact_io_init(const H5D_io_info_t *io_info, const H5D_type_info_t H5_ATTR_UNUSED *type_info,
+H5D__compact_io_init(H5D_io_info_t *io_info, const H5D_type_info_t H5_ATTR_UNUSED *type_info,
hsize_t H5_ATTR_UNUSED nelmts, const H5S_t H5_ATTR_UNUSED *file_space,
const H5S_t H5_ATTR_UNUSED *mem_space, H5D_chunk_map_t H5_ATTR_UNUSED *cm)
{