summaryrefslogtreecommitdiffstats
path: root/src/H5EAhdr.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2019-09-17 23:53:18 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2019-09-17 23:53:18 (GMT)
commit431123503d387bce30b1f6db7dc4ad3a33bc51bb (patch)
treecdede4233f3d4195f85865800586148289f13623 /src/H5EAhdr.c
parentf5a84c9856888446e329dd36bff842e5a2db708c (diff)
downloadhdf5-431123503d387bce30b1f6db7dc4ad3a33bc51bb.zip
hdf5-431123503d387bce30b1f6db7dc4ad3a33bc51bb.tar.gz
hdf5-431123503d387bce30b1f6db7dc4ad3a33bc51bb.tar.bz2
Moved NDEBUG guards to H5EA_DEBUG in H5EA package.
Diffstat (limited to 'src/H5EAhdr.c')
-rw-r--r--src/H5EAhdr.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5EAhdr.c b/src/H5EAhdr.c
index ec40298..8a2e1d1 100644
--- a/src/H5EAhdr.c
+++ b/src/H5EAhdr.c
@@ -49,10 +49,10 @@
/* Local Macros */
/****************/
-#ifndef NDEBUG
+#ifdef H5EA_DEBUG
/* Max. # of bits for max. nelmts index */
#define H5EA_MAX_NELMTS_IDX_MAX 64
-#endif /* NDEBUG */
+#endif /* H5EA_DEBUG */
/* # of elements in a data block for a particular super block */
#define H5EA_SBLK_DBLK_NELMTS(s, m) \
@@ -366,7 +366,7 @@ H5EA__hdr_create(H5F_t *f, const H5EA_create_t *cparam, void *ctx_udata))
HDassert(f);
HDassert(cparam);
-#ifndef NDEBUG
+#ifdef H5EA_DEBUG
{
unsigned sblk_idx; /* Super block index for first "actual" super block */
size_t dblk_nelmts; /* Number of data block elements */
@@ -398,7 +398,7 @@ H5EA__hdr_create(H5F_t *f, const H5EA_create_t *cparam, void *ctx_udata))
if(cparam->max_dblk_page_nelmts_bits > cparam->max_nelmts_bits)
H5E_THROW(H5E_BADVALUE, "max. # of elements per data block page bits must be <= max. # of elements bits")
}
-#endif /* NDEBUG */
+#endif /* H5EA_DEBUG */
/* Allocate space for the shared information */
if(NULL == (hdr = H5EA__hdr_alloc(f)))
@@ -724,7 +724,7 @@ H5EA__hdr_delete(H5EA_hdr_t *hdr))
HDassert(hdr);
HDassert(!hdr->file_rc);
-#ifndef NDEBUG
+#ifdef H5EA_DEBUG
{
unsigned hdr_status = 0; /* Array header's status in the metadata cache */
@@ -736,7 +736,7 @@ H5EA__hdr_delete(H5EA_hdr_t *hdr))
HDassert(hdr_status & H5AC_ES__IN_CACHE);
HDassert(hdr_status & H5AC_ES__IS_PROTECTED);
} /* end block */
-#endif /* NDEBUG */
+#endif /* H5EA_DEBUG */
/* Check for index block */
if(H5F_addr_defined(hdr->idx_blk_addr)) {