summaryrefslogtreecommitdiffstats
path: root/src/H5Bcache.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2012-10-11 19:10:26 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2012-10-11 19:10:26 (GMT)
commitd2f3c1b991b1990fe70afa64b3ca1941165a94c4 (patch)
treec7ffa957a3d8f415f7faab9b7b2e65f9e5d0b759 /src/H5Bcache.c
parentd179489d46c95e068ed6fc7f4c413c88cd9da28d (diff)
downloadhdf5-d2f3c1b991b1990fe70afa64b3ca1941165a94c4.zip
hdf5-d2f3c1b991b1990fe70afa64b3ca1941165a94c4.tar.gz
hdf5-d2f3c1b991b1990fe70afa64b3ca1941165a94c4.tar.bz2
[svn-r22885] Purpose:
Adds some additional flush dependency plumbing and fixes some minor issues with the v2 B-tree code. Tested on: local Ubuntu VM
Diffstat (limited to 'src/H5Bcache.c')
-rw-r--r--src/H5Bcache.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/H5Bcache.c b/src/H5Bcache.c
index 8022743..00715e0 100644
--- a/src/H5Bcache.c
+++ b/src/H5Bcache.c
@@ -440,16 +440,16 @@ done:
/*-------------------------------------------------------------------------
- * Function: H5B_compute_size
+ * Function: H5B_compute_size
*
- * Purpose: Compute the size in bytes of the specified instance of
- * H5B_t on disk, and return it in *len_ptr. On failure,
- * the value of *len_ptr is undefined.
+ * Purpose: Compute the size in bytes of the specified instance of
+ * H5B_t on disk, and return it in *len_ptr. On failure,
+ * the value of *len_ptr is undefined.
*
- * Return: Non-negative on success/Negative on failure
+ * Return: SUCCEED (Can't fail)
*
- * Programmer: John Mainzer
- * 5/13/04
+ * Programmer: John Mainzer
+ * 5/13/04
*
*-------------------------------------------------------------------------
*/
@@ -458,7 +458,7 @@ H5B_compute_size(const H5F_t UNUSED *f, const H5B_t *bt, size_t *size_ptr)
{
H5B_shared_t *shared; /* Pointer to shared B-tree info */
- FUNC_ENTER_NOAPI_NOINIT
+ FUNC_ENTER_NOAPI_NOINIT_NOERR
/* check arguments */
HDassert(f);