summaryrefslogtreecommitdiffstats
path: root/src/H5Spoint.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-07-23 21:12:35 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-07-23 21:12:35 (GMT)
commitd4eb621a16a514a7a6859e0d6ebe129ef0b35849 (patch)
tree6481d1257ca02b8497a43a00dcdfa2108de61b8a /src/H5Spoint.c
parent6ab4d9c1a53a2a09cb250c5a90bcb38574c0d6a8 (diff)
downloadhdf5-d4eb621a16a514a7a6859e0d6ebe129ef0b35849.zip
hdf5-d4eb621a16a514a7a6859e0d6ebe129ef0b35849.tar.gz
hdf5-d4eb621a16a514a7a6859e0d6ebe129ef0b35849.tar.bz2
[svn-r7258] Purpose:
Bug fix Description: I/O on chunked datasets with point selections was not working correctly. Solution: Re-wrote some parts of raw data I/O routines that build the selections for each chunk to correctly handle point selections. Platforms tested: FreeBSD 4.8 (sleipnir) h5committest
Diffstat (limited to 'src/H5Spoint.c')
-rw-r--r--src/H5Spoint.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/H5Spoint.c b/src/H5Spoint.c
index 00ae708..2c98b96 100644
--- a/src/H5Spoint.c
+++ b/src/H5Spoint.c
@@ -38,8 +38,6 @@
static int interface_initialize_g = 0;
/* Static function prototypes */
-static herr_t H5S_select_elements (H5S_t *space, H5S_seloper_t op,
- size_t num_elem, const hssize_t **coord);
static herr_t H5S_point_iter_coords(const H5S_sel_iter_t *iter, hssize_t *coords);
static herr_t H5S_point_iter_block(const H5S_sel_iter_t *iter, hssize_t *start, hssize_t *end);
static hsize_t H5S_point_iter_nelmts(const H5S_sel_iter_t *iter);
@@ -522,7 +520,7 @@ done:
EXAMPLES
REVISION LOG
--------------------------------------------------------------------------*/
-static herr_t
+herr_t
H5S_select_elements (H5S_t *space, H5S_seloper_t op, size_t num_elem,
const hssize_t **coord)
{