summaryrefslogtreecommitdiffstats
path: root/src/H5Gstab.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-28 14:31:56 (GMT)
committerGitHub <noreply@github.com>2023-06-28 14:31:56 (GMT)
commit7a44581a84778a1346a2fd5b6cca7d9db905a321 (patch)
tree44ea9c2d1b471eb227698abe8499c34cfa6d47d2 /src/H5Gstab.c
parent622fcbd13881fbc58bbeaed3062583b759f5e864 (diff)
downloadhdf5-7a44581a84778a1346a2fd5b6cca7d9db905a321.zip
hdf5-7a44581a84778a1346a2fd5b6cca7d9db905a321.tar.gz
hdf5-7a44581a84778a1346a2fd5b6cca7d9db905a321.tar.bz2
Rename HDassert() to assert() (#3191)
* Change HDassert to assert * Fix bin/make_err
Diffstat (limited to 'src/H5Gstab.c')
-rw-r--r--src/H5Gstab.c76
1 files changed, 38 insertions, 38 deletions
diff --git a/src/H5Gstab.c b/src/H5Gstab.c
index 23fb9ae..9627340 100644
--- a/src/H5Gstab.c
+++ b/src/H5Gstab.c
@@ -132,9 +132,9 @@ H5G__stab_create_components(H5F_t *f, H5O_stab_t *stab, size_t size_hint)
/*
* Check arguments.
*/
- HDassert(f);
- HDassert(stab);
- HDassert(size_hint > 0);
+ assert(f);
+ assert(stab);
+ assert(size_hint > 0);
/* Create the B-tree */
if (H5B_create(f, H5B_SNODE, NULL, &(stab->btree_addr) /*out*/) < 0)
@@ -155,7 +155,7 @@ H5G__stab_create_components(H5F_t *f, H5O_stab_t *stab, size_t size_hint)
/* B-trees won't work if the first name isn't at the beginning
* of the heap.
*/
- HDassert(0 == name_offset);
+ assert(0 == name_offset);
done:
/* Release resources */
@@ -196,8 +196,8 @@ H5G__stab_create(H5O_loc_t *grp_oloc, const H5O_ginfo_t *ginfo, H5O_stab_t *stab
/*
* Check arguments.
*/
- HDassert(grp_oloc);
- HDassert(stab);
+ assert(grp_oloc);
+ assert(stab);
/* Adjust the size hint, if necessary */
if (ginfo->lheap_size_hint == 0)
@@ -251,10 +251,10 @@ H5G__stab_insert_real(H5F_t *f, const H5O_stab_t *stab, const char *name, H5O_li
FUNC_ENTER_PACKAGE
/* check arguments */
- HDassert(f);
- HDassert(stab);
- HDassert(name && *name);
- HDassert(obj_lnk);
+ assert(f);
+ assert(stab);
+ assert(name && *name);
+ assert(obj_lnk);
/* Pin the heap down in memory */
if (NULL == (heap = H5HL_protect(f, stab->heap_addr, H5AC__NO_FLAGS_SET)))
@@ -303,9 +303,9 @@ H5G__stab_insert(const H5O_loc_t *grp_oloc, const char *name, H5O_link_t *obj_ln
FUNC_ENTER_PACKAGE
/* check arguments */
- HDassert(grp_oloc && grp_oloc->file);
- HDassert(name && *name);
- HDassert(obj_lnk);
+ assert(grp_oloc && grp_oloc->file);
+ assert(name && *name);
+ assert(obj_lnk);
/* Retrieve symbol table message */
if (NULL == H5O_msg_read(grp_oloc, H5O_STAB_ID, &stab))
@@ -340,8 +340,8 @@ H5G__stab_remove(const H5O_loc_t *loc, H5RS_str_t *grp_full_path_r, const char *
FUNC_ENTER_PACKAGE
- HDassert(loc && loc->file);
- HDassert(name && *name);
+ assert(loc && loc->file);
+ assert(name && *name);
/* Read in symbol table message */
if (NULL == H5O_msg_read(loc, H5O_STAB_ID, &stab))
@@ -393,7 +393,7 @@ H5G__stab_remove_by_idx(const H5O_loc_t *grp_oloc, H5RS_str_t *grp_full_path_r,
FUNC_ENTER_PACKAGE
- HDassert(grp_oloc && grp_oloc->file);
+ assert(grp_oloc && grp_oloc->file);
/* Look up name of link to remove, by index */
if (H5G__stab_lookup_by_idx(grp_oloc, order, n, &obj_lnk) < 0)
@@ -450,10 +450,10 @@ H5G__stab_delete(H5F_t *f, const H5O_stab_t *stab)
FUNC_ENTER_PACKAGE
- HDassert(f);
- HDassert(stab);
- HDassert(H5_addr_defined(stab->btree_addr));
- HDassert(H5_addr_defined(stab->heap_addr));
+ assert(f);
+ assert(stab);
+ assert(H5_addr_defined(stab->btree_addr));
+ assert(H5_addr_defined(stab->heap_addr));
/* Pin the heap down in memory */
if (NULL == (heap = H5HL_protect(f, stab->heap_addr, H5AC__NO_FLAGS_SET)))
@@ -508,8 +508,8 @@ H5G__stab_iterate(const H5O_loc_t *oloc, H5_iter_order_t order, hsize_t skip, hs
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(oloc);
- HDassert(op);
+ assert(oloc);
+ assert(op);
/* Get the B-tree info */
if (NULL == H5O_msg_read(oloc, H5O_STAB_ID, &stab))
@@ -596,8 +596,8 @@ H5G__stab_count(const H5O_loc_t *oloc, hsize_t *num_objs)
FUNC_ENTER_PACKAGE_TAG(oloc->addr)
/* Sanity check */
- HDassert(oloc);
- HDassert(num_objs);
+ assert(oloc);
+ assert(num_objs);
/* Reset the number of objects in the group */
*num_objs = 0;
@@ -636,9 +636,9 @@ H5G__stab_bh_size(H5F_t *f, const H5O_stab_t *stab, H5_ih_info_t *bh_info)
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(f);
- HDassert(stab);
- HDassert(bh_info);
+ assert(f);
+ assert(stab);
+ assert(bh_info);
/* Set up user data for B-tree iteration */
snode_size = 0;
@@ -683,8 +683,8 @@ H5G__stab_get_name_by_idx_cb(const H5G_entry_t *ent, void *_udata)
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(ent);
- HDassert(udata && udata->heap);
+ assert(ent);
+ assert(udata && udata->heap);
/* Get name offset in heap */
name_off = ent->name_off;
@@ -727,7 +727,7 @@ H5G__stab_get_name_by_idx(const H5O_loc_t *oloc, H5_iter_order_t order, hsize_t
FUNC_ENTER_NOAPI(FAIL)
/* Sanity check */
- HDassert(oloc);
+ assert(oloc);
/* Get the B-tree & local heap info */
if (NULL == H5O_msg_read(oloc, H5O_STAB_ID, &stab))
@@ -843,10 +843,10 @@ H5G__stab_lookup(const H5O_loc_t *grp_oloc, const char *name, hbool_t *found, H5
FUNC_ENTER_PACKAGE
/* check arguments */
- HDassert(grp_oloc && grp_oloc->file);
- HDassert(name && *name);
- HDassert(found);
- HDassert(lnk);
+ assert(grp_oloc && grp_oloc->file);
+ assert(name && *name);
+ assert(found);
+ assert(lnk);
/* Retrieve the symbol table message for the group */
if (NULL == H5O_msg_read(grp_oloc, H5O_STAB_ID, &stab))
@@ -903,8 +903,8 @@ H5G__stab_lookup_by_idx_cb(const H5G_entry_t *ent, void *_udata)
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(ent);
- HDassert(udata && udata->heap);
+ assert(ent);
+ assert(udata && udata->heap);
/* Get a pointer to the link name */
if ((name = (const char *)H5HL_offset_into(udata->heap, ent->name_off)) == NULL)
@@ -942,8 +942,8 @@ H5G__stab_lookup_by_idx(const H5O_loc_t *grp_oloc, H5_iter_order_t order, hsize_
FUNC_ENTER_PACKAGE
/* check arguments */
- HDassert(grp_oloc && grp_oloc->file);
- HDassert(lnk);
+ assert(grp_oloc && grp_oloc->file);
+ assert(lnk);
/* Get the B-tree & local heap info */
if (NULL == H5O_msg_read(grp_oloc, H5O_STAB_ID, &stab))