summaryrefslogtreecommitdiffstats
path: root/src/H5Pint.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Pint.c')
-rw-r--r--src/H5Pint.c310
1 files changed, 155 insertions, 155 deletions
diff --git a/src/H5Pint.c b/src/H5Pint.c
index 45647aa..88f9550 100644
--- a/src/H5Pint.c
+++ b/src/H5Pint.c
@@ -461,11 +461,11 @@ H5P_init_phase1(void)
H5P_libclass_t const *lib_class = init_class[u]; /* Current class to operate on */
/* Check if the current class hasn't been initialized and can be now */
- HDassert(lib_class->class_id);
+ assert(lib_class->class_id);
if (*lib_class->class_id == (-1) &&
(lib_class->par_pclass == NULL || *lib_class->par_pclass != NULL)) {
/* Sanity check - only the root class is not allowed to have a parent class */
- HDassert(lib_class->par_pclass || lib_class == H5P_CLS_ROOT);
+ assert(lib_class->par_pclass || lib_class == H5P_CLS_ROOT);
/* Allocate the new class */
if (NULL == (*lib_class->pclass = H5P__create_class(
@@ -499,7 +499,7 @@ H5P_init_phase1(void)
} while (pass_init > 0);
/* Verify that all classes were initialized */
- HDassert(tot_init == NELMTS(init_class));
+ assert(tot_init == NELMTS(init_class));
done:
if (ret_value < 0 && tot_init > 0) {
@@ -510,7 +510,7 @@ done:
for (u = 0; u < NELMTS(init_class); u++) {
H5P_libclass_t const *lib_class = init_class[u]; /* Current class to operate on */
- HDassert(lib_class->class_id);
+ assert(lib_class->class_id);
if (*lib_class->class_id >= 0) {
/* Close the class ID */
if (H5I_dec_ref(*lib_class->class_id) < 0)
@@ -706,7 +706,7 @@ H5P__close_class_cb(void *_pclass, void H5_ATTR_UNUSED **request)
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(pclass);
+ assert(pclass);
/* Close the property list class object */
if (H5P__close_class(pclass) < 0)
@@ -737,7 +737,7 @@ H5P__close_list_cb(void *_plist, void H5_ATTR_UNUSED **request)
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(plist);
+ assert(plist);
/* Close the property list object */
if (H5P_close(plist) < 0)
@@ -779,10 +779,10 @@ H5P__do_prop_cb1(H5SL_t *slist, H5P_genprop_t *prop, H5P_prp_cb1_t cb)
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(slist);
- HDassert(prop);
- HDassert(prop->cmp);
- HDassert(cb);
+ assert(slist);
+ assert(prop);
+ assert(prop->cmp);
+ assert(cb);
/* Allocate space for a temporary copy of the property value */
if (NULL == (tmp_value = H5MM_malloc(prop->size)))
@@ -846,7 +846,7 @@ H5P__copy_pclass(H5P_genclass_t *pclass)
FUNC_ENTER_PACKAGE
- HDassert(pclass);
+ assert(pclass);
/*
* Create new property class object
@@ -928,7 +928,7 @@ H5P_copy_plist(const H5P_genplist_t *old_plist, hbool_t app_ref)
FUNC_ENTER_NOAPI(H5I_INVALID_HID)
- HDassert(old_plist);
+ assert(old_plist);
/*
* Create new property list object
@@ -1144,8 +1144,8 @@ H5P__dup_prop(H5P_genprop_t *oprop, H5P_prop_within_t type)
FUNC_ENTER_PACKAGE
- HDassert(oprop);
- HDassert(type != H5P_PROP_WITHIN_UNKNOWN);
+ assert(oprop);
+ assert(type != H5P_PROP_WITHIN_UNKNOWN);
/* Allocate the new property */
if (NULL == (prop = H5FL_MALLOC(H5P_genprop_t)))
@@ -1158,8 +1158,8 @@ H5P__dup_prop(H5P_genprop_t *oprop, H5P_prop_within_t type)
/* Duplicating property for a class */
if (type == H5P_PROP_WITHIN_CLASS) {
- HDassert(oprop->type == H5P_PROP_WITHIN_CLASS);
- HDassert(oprop->shared_name == FALSE);
+ assert(oprop->type == H5P_PROP_WITHIN_CLASS);
+ assert(oprop->shared_name == FALSE);
/* Duplicate name */
prop->name = H5MM_xstrdup(oprop->name);
@@ -1176,8 +1176,8 @@ H5P__dup_prop(H5P_genprop_t *oprop, H5P_prop_within_t type)
} /* end if */
/* Duplicating a property from a class */
else {
- HDassert(oprop->type == H5P_PROP_WITHIN_CLASS);
- HDassert(oprop->shared_name == FALSE);
+ assert(oprop->type == H5P_PROP_WITHIN_CLASS);
+ assert(oprop->shared_name == FALSE);
/* Share the name */
prop->shared_name = TRUE;
@@ -1189,7 +1189,7 @@ H5P__dup_prop(H5P_genprop_t *oprop, H5P_prop_within_t type)
/* Duplicate current value, if it exists */
if (oprop->value != NULL) {
- HDassert(prop->size > 0);
+ assert(prop->size > 0);
if (NULL == (prop->value = H5MM_malloc(prop->size)))
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed")
H5MM_memcpy(prop->value, oprop->value, prop->size);
@@ -1258,9 +1258,9 @@ H5P__create_prop(const char *name, size_t size, H5P_prop_within_t type, const vo
FUNC_ENTER_PACKAGE
- HDassert(name);
- HDassert((size > 0 && value != NULL) || (size == 0));
- HDassert(type != H5P_PROP_WITHIN_UNKNOWN);
+ assert(name);
+ assert((size > 0 && value != NULL) || (size == 0));
+ assert(type != H5P_PROP_WITHIN_UNKNOWN);
/* Allocate the new property */
if (NULL == (prop = H5FL_MALLOC(H5P_genprop_t)))
@@ -1339,9 +1339,9 @@ H5P__add_prop(H5SL_t *slist, H5P_genprop_t *prop)
FUNC_ENTER_PACKAGE
- HDassert(slist);
- HDassert(prop);
- HDassert(prop->type != H5P_PROP_WITHIN_UNKNOWN);
+ assert(slist);
+ assert(prop);
+ assert(prop->type != H5P_PROP_WITHIN_UNKNOWN);
/* Insert property into skip list */
if (H5SL_insert(slist, prop, prop->name) < 0)
@@ -1376,8 +1376,8 @@ H5P__find_prop_plist(const H5P_genplist_t *plist, const char *name)
FUNC_ENTER_PACKAGE
- HDassert(plist);
- HDassert(name);
+ assert(plist);
+ assert(name);
/* Check if the property has been deleted from list */
if (H5SL_search(plist->del, name) != NULL) {
@@ -1435,8 +1435,8 @@ H5P__find_prop_pclass(H5P_genclass_t *pclass, const char *name)
FUNC_ENTER_PACKAGE
- HDassert(pclass);
- HDassert(name);
+ assert(pclass);
+ assert(name);
/* Get the property from the skip list */
if (NULL == (ret_value = (H5P_genprop_t *)H5SL_search(pclass->props, name)))
@@ -1469,7 +1469,7 @@ H5P__free_prop(H5P_genprop_t *prop)
{
FUNC_ENTER_PACKAGE_NOERR
- HDassert(prop);
+ assert(prop);
/* Release the property value if it exists */
if (prop->value)
@@ -1512,7 +1512,7 @@ H5P__free_prop_cb(void *item, void H5_ATTR_UNUSED *key, void *op_data)
FUNC_ENTER_PACKAGE_NOERR
- HDassert(tprop);
+ assert(tprop);
/* Call the close callback and ignore the return value, there's nothing we can do about it */
if (make_cb && tprop->close != NULL)
@@ -1550,7 +1550,7 @@ H5P__free_del_name_cb(void *item, void H5_ATTR_UNUSED *key, void H5_ATTR_UNUSED
FUNC_ENTER_PACKAGE_NOERR
- HDassert(del_name);
+ assert(del_name);
/* Free the name */
H5MM_xfree(del_name);
@@ -1585,8 +1585,8 @@ H5P__access_class(H5P_genclass_t *pclass, H5P_class_mod_t mod)
{
FUNC_ENTER_PACKAGE_NOERR
- HDassert(pclass);
- HDassert(mod > H5P_MOD_ERR && mod < H5P_MOD_MAX);
+ assert(pclass);
+ assert(mod > H5P_MOD_ERR && mod < H5P_MOD_MAX);
switch (mod) {
case H5P_MOD_INC_CLS: /* Increment the dependent class count*/
@@ -1623,14 +1623,14 @@ H5P__access_class(H5P_genclass_t *pclass, H5P_class_mod_t mod)
case H5P_MOD_ERR:
case H5P_MOD_MAX:
default:
- HDassert(0 && "Invalid H5P class modification");
+ assert(0 && "Invalid H5P class modification");
} /* end switch */
/* Check if we can release the class information now */
if (pclass->deleted && pclass->plists == 0 && pclass->classes == 0) {
H5P_genclass_t *par_class = pclass->parent; /* Pointer to class's parent */
- HDassert(pclass->name);
+ assert(pclass->name);
H5MM_xfree(pclass->name);
/* Free the class properties without making callbacks */
@@ -1680,9 +1680,9 @@ H5P__open_class_path_cb(void *_obj, hid_t H5_ATTR_UNUSED id, void *_key)
FUNC_ENTER_PACKAGE_NOERR
- HDassert(obj);
- HDassert(H5I_GENPROP_CLS == H5I_get_type(id));
- HDassert(key);
+ assert(obj);
+ assert(H5I_GENPROP_CLS == H5I_get_type(id));
+ assert(key);
/* Check if the class object has the same parent as the new class */
if (obj->parent == key->parent) {
@@ -1739,11 +1739,11 @@ H5P__create_class(H5P_genclass_t *par_class, const char *name, H5P_plist_type_t
FUNC_ENTER_PACKAGE
- HDassert(name);
+ assert(name);
/* Allow internal classes to break some rules */
/* (This allows the root of the tree to be created with this routine -QAK) */
if (type == H5P_TYPE_USER)
- HDassert(par_class);
+ assert(par_class);
/* Allocate room for the class */
if (NULL == (pclass = H5FL_CALLOC(H5P_genclass_t)))
@@ -1835,7 +1835,7 @@ H5P__create(H5P_genclass_t *pclass)
FUNC_ENTER_PACKAGE
- HDassert(pclass);
+ assert(pclass);
/*
* Create new property list object
@@ -1974,7 +1974,7 @@ H5P_create_id(H5P_genclass_t *pclass, hbool_t app_ref)
FUNC_ENTER_NOAPI(H5I_INVALID_HID)
- HDassert(pclass);
+ assert(pclass);
/* Create the new property list */
if ((plist = H5P__create(pclass)) == NULL)
@@ -2214,11 +2214,11 @@ H5P__register_real(H5P_genclass_t *pclass, const char *name, size_t size, const
FUNC_ENTER_PACKAGE
- HDassert(pclass);
- HDassert(0 == pclass->plists);
- HDassert(0 == pclass->classes);
- HDassert(name);
- HDassert((size > 0 && def_value != NULL) || (size == 0));
+ assert(pclass);
+ assert(0 == pclass->plists);
+ assert(0 == pclass->classes);
+ assert(name);
+ assert((size > 0 && def_value != NULL) || (size == 0));
/* Check for duplicate named properties */
if (NULL != H5SL_search(pclass->props, name))
@@ -2445,8 +2445,8 @@ H5P__register(H5P_genclass_t **ppclass, const char *name, size_t size, const voi
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(ppclass);
- HDassert(pclass);
+ assert(ppclass);
+ assert(pclass);
/* Check if class needs to be split because property lists or classes have
* been created since the last modification was made to the class.
@@ -2684,9 +2684,9 @@ H5P_insert(H5P_genplist_t *plist, const char *name, size_t size, void *value, H5
FUNC_ENTER_NOAPI_NOINIT
- HDassert(plist);
- HDassert(name);
- HDassert((size > 0 && value != NULL) || (size == 0));
+ assert(plist);
+ assert(name);
+ assert((size > 0 && value != NULL) || (size == 0));
/* Check for duplicate named properties */
if (NULL != H5SL_search(plist->props, name))
@@ -2777,10 +2777,10 @@ H5P__do_prop(H5P_genplist_t *plist, const char *name, H5P_do_plist_op_t plist_op
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(plist);
- HDassert(name);
- HDassert(plist_op);
- HDassert(pclass_op);
+ assert(plist);
+ assert(name);
+ assert(plist_op);
+ assert(pclass_op);
/* Check if the property has been deleted */
if (NULL != H5SL_search(plist->del, name))
@@ -2857,9 +2857,9 @@ H5P__poke_plist_cb(H5P_genplist_t H5_ATTR_NDEBUG_UNUSED *plist, const char H5_AT
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(plist);
- HDassert(name);
- HDassert(prop);
+ assert(plist);
+ assert(name);
+ assert(prop);
/* Check for property size >0 */
if (0 == prop->size)
@@ -2904,10 +2904,10 @@ H5P__poke_pclass_cb(H5P_genplist_t *plist, const char H5_ATTR_NDEBUG_UNUSED *nam
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(plist);
- HDassert(name);
- HDassert(prop);
- HDassert(prop->cmp);
+ assert(plist);
+ assert(name);
+ assert(prop);
+ assert(prop->cmp);
/* Check for property size >0 */
if (0 == prop->size)
@@ -2965,9 +2965,9 @@ H5P_poke(H5P_genplist_t *plist, const char *name, const void *value)
FUNC_ENTER_NOAPI(FAIL)
/* Sanity check */
- HDassert(plist);
- HDassert(name);
- HDassert(value);
+ assert(plist);
+ assert(name);
+ assert(value);
/* Find the property and set the value */
udata.value = value;
@@ -3010,9 +3010,9 @@ H5P__set_plist_cb(H5P_genplist_t *plist, const char *name, H5P_genprop_t *prop,
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(plist);
- HDassert(name);
- HDassert(prop);
+ assert(plist);
+ assert(name);
+ assert(prop);
/* Check for property size >0 */
if (0 == prop->size)
@@ -3087,10 +3087,10 @@ H5P__set_pclass_cb(H5P_genplist_t *plist, const char *name, H5P_genprop_t *prop,
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(plist);
- HDassert(name);
- HDassert(prop);
- HDassert(prop->cmp);
+ assert(plist);
+ assert(name);
+ assert(prop);
+ assert(prop->cmp);
/* Check for property size >0 */
if (0 == prop->size)
@@ -3177,9 +3177,9 @@ H5P_set(H5P_genplist_t *plist, const char *name, const void *value)
FUNC_ENTER_NOAPI(FAIL)
/* Sanity check */
- HDassert(plist);
- HDassert(name);
- HDassert(value);
+ assert(plist);
+ assert(name);
+ assert(value);
/* Find the property and set the value */
udata.value = value;
@@ -3224,9 +3224,9 @@ H5P__class_get(const H5P_genclass_t *pclass, const char *name, void *value)
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(pclass);
- HDassert(name);
- HDassert(value);
+ assert(pclass);
+ assert(name);
+ assert(value);
/* Find property in list */
if (NULL == (prop = (H5P_genprop_t *)H5SL_search(pclass->props, name)))
@@ -3279,9 +3279,9 @@ H5P__class_set(const H5P_genclass_t *pclass, const char *name, const void *value
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(pclass);
- HDassert(name);
- HDassert(value);
+ assert(pclass);
+ assert(name);
+ assert(value);
/* Find property in list */
if (NULL == (prop = (H5P_genprop_t *)H5SL_search(pclass->props, name)))
@@ -3326,8 +3326,8 @@ H5P_exist_plist(const H5P_genplist_t *plist, const char *name)
FUNC_ENTER_NOAPI_NOINIT_NOERR
- HDassert(plist);
- HDassert(name);
+ assert(plist);
+ assert(name);
/* Check for property in deleted property list */
if (H5SL_search(plist->del, name) != NULL)
@@ -3385,8 +3385,8 @@ H5P__exist_pclass(H5P_genclass_t *pclass, const char *name)
FUNC_ENTER_PACKAGE_NOERR
- HDassert(pclass);
- HDassert(name);
+ assert(pclass);
+ assert(name);
/* Check for property in property list */
if (H5SL_search(pclass->props, name) != NULL)
@@ -3441,9 +3441,9 @@ H5P__get_size_plist(const H5P_genplist_t *plist, const char *name, size_t *size)
FUNC_ENTER_PACKAGE
- HDassert(plist);
- HDassert(name);
- HDassert(size);
+ assert(plist);
+ assert(name);
+ assert(size);
/* Find property */
if (NULL == (prop = H5P__find_prop_plist(plist, name)))
@@ -3486,9 +3486,9 @@ H5P__get_size_pclass(H5P_genclass_t *pclass, const char *name, size_t *size)
FUNC_ENTER_PACKAGE
- HDassert(pclass);
- HDassert(name);
- HDassert(size);
+ assert(pclass);
+ assert(name);
+ assert(size);
/* Find property */
if ((prop = H5P__find_prop_pclass(pclass, name)) == NULL)
@@ -3526,8 +3526,8 @@ H5P__get_nprops_plist(const H5P_genplist_t *plist, size_t *nprops)
{
FUNC_ENTER_PACKAGE_NOERR
- HDassert(plist);
- HDassert(nprops);
+ assert(plist);
+ assert(nprops);
/* Get property size */
*nprops = plist->nprops;
@@ -3563,8 +3563,8 @@ H5P_get_nprops_pclass(const H5P_genclass_t *pclass, size_t *nprops, hbool_t recu
FUNC_ENTER_NOAPI_NOERR
- HDassert(pclass);
- HDassert(nprops);
+ assert(pclass);
+ assert(nprops);
/* Get number of properties */
*nprops = pclass->nprops;
@@ -3609,8 +3609,8 @@ H5P__cmp_prop(const H5P_genprop_t *prop1, const H5P_genprop_t *prop2)
FUNC_ENTER_PACKAGE_NOERR
- HDassert(prop1);
- HDassert(prop2);
+ assert(prop1);
+ assert(prop2);
/* Check the name */
if ((cmp_value = HDstrcmp(prop1->name, prop2->name)) != 0)
@@ -3740,8 +3740,8 @@ H5P__cmp_class(const H5P_genclass_t *pclass1, const H5P_genclass_t *pclass2)
FUNC_ENTER_PACKAGE_NOERR
- HDassert(pclass1);
- HDassert(pclass2);
+ assert(pclass1);
+ assert(pclass2);
/* Use the revision number to quickly check for identical classes */
if (pclass1->revision == pclass2->revision)
@@ -3871,8 +3871,8 @@ H5P__cmp_plist_cb(H5P_genprop_t *prop, void *_udata)
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(prop);
- HDassert(udata);
+ assert(prop);
+ assert(udata);
/* Check if the property exists in the second property list */
if ((prop2_exist = H5P_exist_plist(udata->plist2, prop->name)) < 0)
@@ -3931,9 +3931,9 @@ H5P__cmp_plist(const H5P_genplist_t *plist1, const H5P_genplist_t *plist2, int *
FUNC_ENTER_PACKAGE
- HDassert(plist1);
- HDassert(plist2);
- HDassert(cmp_ret);
+ assert(plist1);
+ assert(plist2);
+ assert(cmp_ret);
/* Check the number of properties */
if (plist1->nprops < plist2->nprops) {
@@ -4008,8 +4008,8 @@ H5P_class_isa(const H5P_genclass_t *pclass1, const H5P_genclass_t *pclass2)
FUNC_ENTER_NOAPI_NOERR
- HDassert(pclass1);
- HDassert(pclass2);
+ assert(pclass1);
+ assert(pclass2);
/* Compare property classes */
if (H5P__cmp_class(pclass1, pclass2) == 0) {
@@ -4153,8 +4153,8 @@ H5P__iterate_plist_cb(void *_item, void *_key, void *_udata)
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(item);
- HDassert(key);
+ assert(item);
+ assert(key);
/* Check if we've found the correctly indexed property */
if (*udata->curr_idx_ptr >= udata->prev_idx) {
@@ -4206,8 +4206,8 @@ H5P__iterate_plist_pclass_cb(void *_item, void *_key, void *_udata)
FUNC_ENTER_PACKAGE_NOERR
/* Sanity check */
- HDassert(item);
- HDassert(key);
+ assert(item);
+ assert(key);
/* Only call iterator callback for properties we haven't seen
* before and that haven't been deleted.
@@ -4285,9 +4285,9 @@ H5P__iterate_plist(const H5P_genplist_t *plist, hbool_t iter_all_prop, int *idx,
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(plist);
- HDassert(idx);
- HDassert(cb_func);
+ assert(plist);
+ assert(idx);
+ assert(cb_func);
/* Create the skip list to hold names of properties already seen */
if (NULL == (seen = H5SL_create(H5SL_TYPE_STR, NULL)))
@@ -4364,8 +4364,8 @@ H5P__iterate_pclass_cb(void *_item, void H5_ATTR_NDEBUG_UNUSED *_key, void *_uda
FUNC_ENTER_PACKAGE_NOERR
/* Sanity check */
- HDassert(item);
- HDassert((char *)_key);
+ assert(item);
+ assert((char *)_key);
/* Check if we've found the correctly indexed property */
if (*udata->curr_idx_ptr >= udata->prev_idx) {
@@ -4443,9 +4443,9 @@ H5P__iterate_pclass(const H5P_genclass_t *pclass, int *idx, H5P_iterate_int_t cb
FUNC_ENTER_PACKAGE_NOERR
/* Sanity check */
- HDassert(pclass);
- HDassert(idx);
- HDassert(cb_func);
+ assert(pclass);
+ assert(idx);
+ assert(cb_func);
/* Set up iterator callback info */
udata_int.cb_func = cb_func;
@@ -4497,9 +4497,9 @@ H5P__peek_cb(H5P_genplist_t H5_ATTR_NDEBUG_UNUSED *plist, const char H5_ATTR_NDE
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(plist);
- HDassert(name);
- HDassert(prop);
+ assert(plist);
+ assert(name);
+ assert(prop);
/* Check for property size >0 */
if (0 == prop->size)
@@ -4545,9 +4545,9 @@ H5P_peek(H5P_genplist_t *plist, const char *name, void *value)
FUNC_ENTER_NOAPI(FAIL)
/* Sanity check */
- HDassert(plist);
- HDassert(name);
- HDassert(value);
+ assert(plist);
+ assert(name);
+ assert(value);
/* Find the property and peek at the value */
udata.value = value;
@@ -4590,9 +4590,9 @@ H5P__get_cb(H5P_genplist_t *plist, const char *name, H5P_genprop_t *prop, void *
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(plist);
- HDassert(name);
- HDassert(prop);
+ assert(plist);
+ assert(name);
+ assert(prop);
/* Check for property size >0 */
if (0 == prop->size)
@@ -4661,9 +4661,9 @@ H5P_get(H5P_genplist_t *plist, const char *name, void *value)
FUNC_ENTER_NOAPI(FAIL)
/* Sanity check */
- HDassert(plist);
- HDassert(name);
- HDassert(value);
+ assert(plist);
+ assert(name);
+ assert(value);
/* Find the property and get the value */
udata.value = value;
@@ -4704,9 +4704,9 @@ H5P__del_plist_cb(H5P_genplist_t *plist, const char *name, H5P_genprop_t *prop,
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(plist);
- HDassert(name);
- HDassert(prop);
+ assert(plist);
+ assert(name);
+ assert(prop);
/* Pass value to 'close' callback, if it exists */
if (NULL != prop->del) {
@@ -4773,9 +4773,9 @@ H5P__del_pclass_cb(H5P_genplist_t *plist, const char *name, H5P_genprop_t *prop,
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(plist);
- HDassert(name);
- HDassert(prop);
+ assert(plist);
+ assert(name);
+ assert(prop);
/* Pass value to 'del' callback, if it exists */
if (NULL != prop->del) {
@@ -4848,8 +4848,8 @@ H5P_remove(H5P_genplist_t *plist, const char *name)
FUNC_ENTER_NOAPI(FAIL)
/* Sanity check */
- HDassert(plist);
- HDassert(name);
+ assert(plist);
+ assert(name);
/* Find the property and get the value */
if (H5P__do_prop(plist, name, H5P__del_plist_cb, H5P__del_pclass_cb, NULL) < 0)
@@ -4901,7 +4901,7 @@ H5P__copy_prop_plist(hid_t dst_id, hid_t src_id, const char *name)
FUNC_ENTER_PACKAGE
- HDassert(name);
+ assert(name);
/* Get the objects to operate on */
if (NULL == (src_plist = (H5P_genplist_t *)H5I_object(src_id)) ||
@@ -5012,7 +5012,7 @@ H5P__copy_prop_pclass(hid_t dst_id, hid_t src_id, const char *name)
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(name);
+ assert(name);
/* Get property list classes */
if (NULL == (src_pclass = (H5P_genclass_t *)H5I_object(src_id)))
@@ -5044,7 +5044,7 @@ H5P__copy_prop_pclass(hid_t dst_id, hid_t src_id, const char *name)
/* Substitute the new destination property class in the ID */
if (NULL == (old_dst_pclass = (H5P_genclass_t *)H5I_subst(dst_id, dst_pclass)))
HGOTO_ERROR(H5E_PLIST, H5E_CANTSET, FAIL, "unable to substitute property class in ID")
- HDassert(old_dst_pclass == orig_dst_pclass);
+ assert(old_dst_pclass == orig_dst_pclass);
/* Close the previous class */
if (H5P__close_class(old_dst_pclass) < 0)
@@ -5087,8 +5087,8 @@ H5P__unregister(H5P_genclass_t *pclass, const char *name)
FUNC_ENTER_PACKAGE
- HDassert(pclass);
- HDassert(name);
+ assert(pclass);
+ assert(name);
/* Get the property node from the skip list */
if ((prop = (H5P_genprop_t *)H5SL_search(pclass->props, name)) == NULL)
@@ -5150,7 +5150,7 @@ H5P_close(H5P_genplist_t *plist)
FUNC_ENTER_NOAPI_NOINIT
- HDassert(plist);
+ assert(plist);
/* Make call to property list class close callback, if needed
* (up through chain of parent classes also)
@@ -5310,7 +5310,7 @@ H5P_get_class_name(H5P_genclass_t *pclass)
FUNC_ENTER_NOAPI_NOERR
- HDassert(pclass);
+ assert(pclass);
/* Get class name */
ret_value = H5MM_xstrdup(pclass->name);
@@ -5346,7 +5346,7 @@ H5P__get_class_path(H5P_genclass_t *pclass)
FUNC_ENTER_PACKAGE
- HDassert(pclass);
+ assert(pclass);
/* Recursively build the full path */
if (pclass->parent != NULL) {
@@ -5412,11 +5412,11 @@ H5P__open_class_path(const char *path)
FUNC_ENTER_PACKAGE
- HDassert(path);
+ assert(path);
/* Duplicate the path to use */
tmp_path = H5MM_xstrdup(path);
- HDassert(tmp_path);
+ assert(tmp_path);
/* Find the generic property class with this full path */
curr_name = tmp_path;
@@ -5491,7 +5491,7 @@ H5P__get_class_parent(const H5P_genclass_t *pclass)
FUNC_ENTER_PACKAGE_NOERR
- HDassert(pclass);
+ assert(pclass);
/* Get property size */
ret_value = pclass->parent;
@@ -5523,7 +5523,7 @@ H5P__close_class(H5P_genclass_t *pclass)
FUNC_ENTER_NOAPI_NOINIT
- HDassert(pclass);
+ assert(pclass);
/* Decrement the reference count & check if the object should go away */
if (H5P__access_class(pclass, H5P_MOD_DEC_REF) < 0)
@@ -5557,7 +5557,7 @@ H5P__new_plist_of_type(H5P_plist_type_t type)
/* Sanity checks */
HDcompile_assert(H5P_TYPE_REFERENCE_ACCESS == (H5P_TYPE_MAX_TYPE - 1));
- HDassert(type >= H5P_TYPE_USER && type <= H5P_TYPE_REFERENCE_ACCESS);
+ assert(type >= H5P_TYPE_USER && type <= H5P_TYPE_REFERENCE_ACCESS);
/* Check arguments */
if (type == H5P_TYPE_USER)
@@ -5693,7 +5693,7 @@ H5P_get_plist_id(const H5P_genplist_t *plist)
/* Use FUNC_ENTER_NOAPI_NOINIT_NOERR here to avoid performance issues */
FUNC_ENTER_NOAPI_NOINIT_NOERR
- HDassert(plist);
+ assert(plist);
FUNC_LEAVE_NOAPI(plist->plist_id)
} /* end H5P_get_plist_id() */
@@ -5720,7 +5720,7 @@ H5P_get_class(const H5P_genplist_t *plist)
/* Use FUNC_ENTER_NOAPI_NOINIT_NOERR here to avoid performance issues */
FUNC_ENTER_NOAPI_NOINIT_NOERR
- HDassert(plist);
+ assert(plist);
FUNC_LEAVE_NOAPI(plist->pclass)
} /* end H5P_get_class() */