From 2eeaa7fcc432f10fbbefcd7de7800d9e7d9595d6 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Wed, 20 Mar 2024 02:45:06 -0700 Subject: [PATCH] Fix FUNC_ENTER macro Signed-off-by: Quincey Koziol --- src/H5TSpool.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/H5TSpool.c b/src/H5TSpool.c index 1d1c2dfe492..3f8af6da290 100644 --- a/src/H5TSpool.c +++ b/src/H5TSpool.c @@ -231,7 +231,7 @@ H5TS_pool_create(H5TS_pool_t **pool, unsigned num_threads) H5TS_pool_t *new_pool = NULL; /* Newly created pool */ herr_t ret_value = SUCCEED; - FUNC_ENTER_PACKAGE_NAMECHECK_ONLY + FUNC_ENTER_NOAPI_NAMECHECK_ONLY /* Sanity checks */ if (H5_UNLIKELY(NULL == pool)) @@ -298,7 +298,7 @@ H5TS_pool_add_task(H5TS_pool_t *pool, H5TS_thread_start_func_t func, void *ctx) bool have_mutex = false; /* Whether we're holding the mutex */ herr_t ret_value = SUCCEED; - FUNC_ENTER_PACKAGE_NAMECHECK_ONLY + FUNC_ENTER_NOAPI_NAMECHECK_ONLY /* Sanity checks */ if (H5_UNLIKELY(NULL == pool)) @@ -362,7 +362,7 @@ H5TS_pool_destroy(H5TS_pool_t *pool) bool have_mutex = false; /* Whether we're holding the mutex */ herr_t ret_value = SUCCEED; - FUNC_ENTER_PACKAGE_NAMECHECK_ONLY + FUNC_ENTER_NOAPI_NAMECHECK_ONLY /* Sanity checks */ if (H5_UNLIKELY(NULL == pool))