summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@lbl.gov>2020-08-22 19:43:46 (GMT)
committerQuincey Koziol <koziol@lbl.gov>2020-08-22 19:43:46 (GMT)
commit1077a767ff3885dd23bdbfdfba51037c925ce23c (patch)
treeccc34cd48facc914e9a448b8c52774cc2da1a48d /src
parent41ccf615262e48f1df824ea09d70a9223243585a (diff)
downloadhdf5-1077a767ff3885dd23bdbfdfba51037c925ce23c.zip
hdf5-1077a767ff3885dd23bdbfdfba51037c925ce23c.tar.gz
hdf5-1077a767ff3885dd23bdbfdfba51037c925ce23c.tar.bz2
Minor fixes to align w/state of 1.12 code
Diffstat (limited to 'src')
-rw-r--r--src/H5Tref.c1
-rw-r--r--src/H5VMprivate.h20
2 files changed, 10 insertions, 11 deletions
diff --git a/src/H5Tref.c b/src/H5Tref.c
index 054cd6a..a79abcf 100644
--- a/src/H5Tref.c
+++ b/src/H5Tref.c
@@ -1221,7 +1221,6 @@ H5T__ref_reclaim(void *elem, const H5T_t *dt)
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_PACKAGE
- H5T_REF_LOG_DEBUG("");
/* Sanity checks */
HDassert(elem);
diff --git a/src/H5VMprivate.h b/src/H5VMprivate.h
index e784847..5c975f6 100644
--- a/src/H5VMprivate.h
+++ b/src/H5VMprivate.h
@@ -164,8 +164,8 @@ H5VM_vector_reduce_product(unsigned n, const hsize_t *v)
{
hsize_t ret_value = 1;
- /* Use FUNC_ENTER_STATIC_NOERR here to avoid performance issues */
- FUNC_ENTER_STATIC_NOERR
+ /* Use FUNC_ENTER_NOAPI_NOINIT_NOERR here to avoid performance issues */
+ FUNC_ENTER_NOAPI_NOINIT_NOERR
if (n && !v) HGOTO_DONE(0)
while (n--) ret_value *= *v++;
@@ -198,8 +198,8 @@ H5VM_vector_zerop_u(int n, const hsize_t *v)
{
htri_t ret_value=TRUE; /* Return value */
- /* Use FUNC_ENTER_STATIC_NOERR here to avoid performance issues */
- FUNC_ENTER_STATIC_NOERR
+ /* Use FUNC_ENTER_NOAPI_NOINIT_NOERR here to avoid performance issues */
+ FUNC_ENTER_NOAPI_NOINIT_NOERR
if (!v)
HGOTO_DONE(TRUE)
@@ -235,8 +235,8 @@ H5VM_vector_zerop_s(int n, const hssize_t *v)
{
htri_t ret_value=TRUE; /* Return value */
- /* Use FUNC_ENTER_STATIC_NOERR here to avoid performance issues */
- FUNC_ENTER_STATIC_NOERR
+ /* Use FUNC_ENTER_NOAPI_NOINIT_NOERR here to avoid performance issues */
+ FUNC_ENTER_NOAPI_NOINIT_NOERR
if (!v)
HGOTO_DONE(TRUE)
@@ -274,8 +274,8 @@ H5VM_vector_cmp_u(unsigned n, const hsize_t *v1, const hsize_t *v2)
{
int ret_value=0; /* Return value */
- /* Use FUNC_ENTER_STATIC_NOERR here to avoid performance issues */
- FUNC_ENTER_STATIC_NOERR
+ /* Use FUNC_ENTER_NOAPI_NOINIT_NOERR here to avoid performance issues */
+ FUNC_ENTER_NOAPI_NOINIT_NOERR
if (v1 == v2) HGOTO_DONE(0)
if (v1 == NULL) HGOTO_DONE(-1)
@@ -318,8 +318,8 @@ H5VM_vector_cmp_s(unsigned n, const hssize_t *v1, const hssize_t *v2)
{
int ret_value=0; /* Return value */
- /* Use FUNC_ENTER_STATIC_NOERR here to avoid performance issues */
- FUNC_ENTER_STATIC_NOERR
+ /* Use FUNC_ENTER_NOAPI_NOINIT_NOERR here to avoid performance issues */
+ FUNC_ENTER_NOAPI_NOINIT_NOERR
if (v1 == v2) HGOTO_DONE(0)
if (v1 == NULL) HGOTO_DONE(-1)