Fixed libver bounds underscore issue
This commit is contained in:
@@ -1476,7 +1476,7 @@ H5Fset_libver_bounds(hid_t file_id, H5F_libver_t low, H5F_libver_t high)
|
||||
HGOTO_ERROR(H5E_FILE, H5E_CANTSET, FAIL, "can't set collective metadata read info")
|
||||
|
||||
/* Call internal set_libver_bounds function */
|
||||
if(H5F_set_libver_bounds(f, low, high) < 0)
|
||||
if(H5F__set_libver_bounds(f, low, high) < 0)
|
||||
HGOTO_ERROR(H5E_FILE, H5E_CANTSET, FAIL, "cannot set low/high bounds")
|
||||
|
||||
done:
|
||||
|
||||
@@ -149,7 +149,7 @@ done:
|
||||
* Purpose: Enable switching between latest or non-latest format while
|
||||
* a file is open.
|
||||
* This is deprecated starting release 1.10.2 and is modified
|
||||
* to call the private H5F_set_libver_bounds() to set the
|
||||
* to call the private H5F__set_libver_bounds() to set the
|
||||
* bounds.
|
||||
*
|
||||
* Before release 1.10.2, the library supports only two
|
||||
@@ -198,7 +198,7 @@ H5Fset_latest_format(hid_t file_id, hbool_t latest_format)
|
||||
low = H5F_LIBVER_EARLIEST;
|
||||
|
||||
/* Call private set_libver_bounds function to set the bounds */
|
||||
if(H5F_set_libver_bounds(f, low, high) < 0)
|
||||
if(H5F__set_libver_bounds(f, low, high) < 0)
|
||||
HGOTO_ERROR(H5E_FILE, H5E_CANTSET, FAIL, "cannot set low/high bounds")
|
||||
|
||||
done:
|
||||
|
||||
@@ -2761,7 +2761,7 @@ H5F_set_store_msg_crt_idx(H5F_t *f, hbool_t flag)
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5F_set_libver_bounds()
|
||||
* Function: H5F__set_libver_bounds()
|
||||
*
|
||||
* Purpose: Set the file's low and high bound to the input parameters
|
||||
* 'low' and 'high' respectively.
|
||||
@@ -2775,7 +2775,7 @@ H5F_set_store_msg_crt_idx(H5F_t *f, hbool_t flag)
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
herr_t
|
||||
H5F_set_libver_bounds(H5F_t *f, H5F_libver_t low, H5F_libver_t high)
|
||||
H5F__set_libver_bounds(H5F_t *f, H5F_libver_t low, H5F_libver_t high)
|
||||
{
|
||||
herr_t ret_value = SUCCEED; /* Return value */
|
||||
|
||||
@@ -2817,7 +2817,7 @@ H5F_set_libver_bounds(H5F_t *f, H5F_libver_t low, H5F_libver_t high)
|
||||
|
||||
done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* H5F_set_libver_bounds() */
|
||||
} /* H5F__set_libver_bounds() */
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
|
||||
@@ -415,6 +415,7 @@ H5_DLL herr_t H5F__format_convert(H5F_t *f);
|
||||
H5_DLL herr_t H5F__start_swmr_write(H5F_t *f);
|
||||
H5_DLL herr_t H5F__close(hid_t file_id);
|
||||
H5_DLL herr_t H5F__close_cb(H5F_t *f);
|
||||
H5_DLL herr_t H5F__set_libver_bounds(H5F_t *f, H5F_libver_t low, H5F_libver_t high);
|
||||
|
||||
/* File mount related routines */
|
||||
H5_DLL herr_t H5F__close_mounts(H5F_t *f);
|
||||
|
||||
@@ -767,7 +767,6 @@ H5_DLL unsigned H5F_gc_ref(const H5F_t *f);
|
||||
H5_DLL unsigned H5F_use_latest_flags(const H5F_t *f, unsigned fl);
|
||||
H5_DLL hbool_t H5F_store_msg_crt_idx(const H5F_t *f);
|
||||
H5_DLL herr_t H5F_set_store_msg_crt_idx(H5F_t *f, hbool_t flag);
|
||||
H5_DLL herr_t H5F_set_libver_bounds(H5F_t * f, H5F_libver_t low, H5F_libver_t high);
|
||||
H5_DLL struct H5UC_t *H5F_grp_btree_shared(const H5F_t *f);
|
||||
H5_DLL herr_t H5F_set_grp_btree_shared(H5F_t *f, struct H5UC_t *rc);
|
||||
H5_DLL hbool_t H5F_use_tmp_space(const H5F_t *f);
|
||||
|
||||
Reference in New Issue
Block a user