diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2014-11-03 20:13:25 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2014-11-03 20:13:25 (GMT) |
commit | 89e2c8822ddacd982bd326be153e30fc5cbc3d3a (patch) | |
tree | cc0adbefb22b72392b505283eda0ebb1456bf5a4 /src/H5Sall.c | |
parent | 2fcec016a8c827cae8bb0f0caa7c74b4dc005285 (diff) | |
download | hdf5-89e2c8822ddacd982bd326be153e30fc5cbc3d3a.zip hdf5-89e2c8822ddacd982bd326be153e30fc5cbc3d3a.tar.gz hdf5-89e2c8822ddacd982bd326be153e30fc5cbc3d3a.tar.bz2 |
[svn-r25766] Description:
Revert r25273, 25283 & 25439 (the hyperslab improvement changes). They
are buggy and it's taking me a long time to correct the problem. I'll check
in a revised form of the changes when I've got them straightened out.
Tested on:
Mac OSX 10.10.0 (amazon) w/gcc 4.9.x, C++, FORTRAN
Linux 2.6.x (jam) w/parallel
Diffstat (limited to 'src/H5Sall.c')
-rw-r--r-- | src/H5Sall.c | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/src/H5Sall.c b/src/H5Sall.c index 0b7120c..24caad2 100644 --- a/src/H5Sall.c +++ b/src/H5Sall.c @@ -17,7 +17,7 @@ * Programmer: Quincey Koziol <koziol@ncsa.uiuc.edu> * Tuesday, June 16, 1998 * - * Purpose: "All" selection dataspace I/O functions. + * Purpose: "All" selection data space I/O functions. */ #define H5S_PACKAGE /*suppress error about including H5Spkg */ @@ -413,8 +413,6 @@ H5S_all_release(H5S_t *space) static herr_t H5S_all_copy(H5S_t *dst, const H5S_t UNUSED *src, hbool_t UNUSED share_selection) { - unsigned u; /* Local index variable */ - FUNC_ENTER_NOAPI_NOINIT_NOERR HDassert(src); @@ -423,12 +421,6 @@ H5S_all_copy(H5S_t *dst, const H5S_t UNUSED *src, hbool_t UNUSED share_selection /* Set number of elements in selection */ dst->select.num_elem = (hsize_t)H5S_GET_EXTENT_NPOINTS(dst); - /* Update the bound box */ - for(u = 0; u < dst->extent.rank; u++) { - dst->select.low_bounds[u] = 0; - dst->select.high_bounds[u] = dst->extent.size[u] - 1; - } /* end for */ - FUNC_LEAVE_NOAPI(SUCCEED) } /* end H5S_all_copy() */ @@ -860,7 +852,6 @@ done: herr_t H5S_select_all(H5S_t *space, hbool_t rel_prev) { - unsigned u; /* Local index variable */ herr_t ret_value = SUCCEED; /* return value */ FUNC_ENTER_NOAPI(FAIL) @@ -876,12 +867,6 @@ H5S_select_all(H5S_t *space, hbool_t rel_prev) /* Set number of elements in selection */ space->select.num_elem = (hsize_t)H5S_GET_EXTENT_NPOINTS(space); - /* Update the bound box */ - for(u = 0; u < space->extent.rank; u++) { - space->select.low_bounds[u] = 0; - space->select.high_bounds[u] = space->extent.size[u] - 1; - } /* end for */ - /* Set selection type */ space->select.type = H5S_sel_all; @@ -918,7 +903,7 @@ H5Sselect_all(hid_t spaceid) /* Check args */ if(NULL == (space = (H5S_t *)H5I_object_verify(spaceid, H5I_DATASPACE))) - HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a dataspace") + HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a data space") /* Call internal routine to do the work */ if(H5S_select_all(space, TRUE) < 0) |