summaryrefslogtreecommitdiffstats
path: root/src/H5Stest.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2005-10-13 21:39:51 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2005-10-13 21:39:51 (GMT)
commitb76762fab1c9ef6b2496859c349cec0a3e5439d6 (patch)
treeab73bd91c809c891dc24e4127b5590eb2d0c9156 /src/H5Stest.c
parent39220e7a3055735e4dfced3a3b4d07c91c386447 (diff)
downloadhdf5-b76762fab1c9ef6b2496859c349cec0a3e5439d6.zip
hdf5-b76762fab1c9ef6b2496859c349cec0a3e5439d6.tar.gz
hdf5-b76762fab1c9ef6b2496859c349cec0a3e5439d6.tar.bz2
[svn-r11558] Purpose:
Bug fix Description: Check in Kent's fixes to hyperslab rebuilding code that should correctly detect situation when different sub-hyperslabs exist in a higher dimension. Solution: Remember previous sub-hyperslab information and compare that with newly generated sub-hyperslab to make certain they are the same. Platforms tested: FreeBSD 4.11 (sleipnir) Too minor to require h5committest
Diffstat (limited to 'src/H5Stest.c')
-rw-r--r--src/H5Stest.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/H5Stest.c b/src/H5Stest.c
index 2eef919..83fbd96 100644
--- a/src/H5Stest.c
+++ b/src/H5Stest.c
@@ -71,3 +71,38 @@ done:
FUNC_LEAVE_NOAPI(ret_value);
} /* H5S_select_shape_same_test() */
+/*--------------------------------------------------------------------------
+ NAME
+ H5S_inquiry_rebuild_status
+ PURPOSE
+ Determine the status of rebuild
+ USAGE
+ htri_t H5S_inquiry_rebuild_status(hid_t space_id)
+ hid_t space_id; IN: dataspace id
+ RETURNS
+ Non-negative TRUE/FALSE on success, negative on failure
+ DESCRIPTION
+ Query the status of rebuilding the hyperslab
+ GLOBAL VARIABLES
+ COMMENTS, BUGS, ASSUMPTIONS
+ DO NOT USE THIS FUNCTION FOR ANYTHING EXCEPT TESTING H5P_get_class_path()
+ EXAMPLES
+ REVISION LOG
+--------------------------------------------------------------------------*/
+htri_t
+H5S_inquiry_rebuild_status(hid_t space_id)
+{
+ static htri_t ret_value = FAIL; /* return value */
+
+ H5S_t *space1 = NULL; /* Pointer to 1st dataspace */
+
+ FUNC_ENTER_NOAPI(H5S_inquiry_rebuild_status, FAIL);
+ /* Get dataspace structures */
+if (NULL == (space1=H5I_object_verify(space_id, H5I_DATASPACE)))
+ HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a dataspace");
+
+ ret_value= space1->select.sel_info.hslab->diminfo_valid;
+
+done:
+ FUNC_LEAVE_NOAPI(ret_value);
+} /* H5S_inquiry_rebuild_status() */