Skip to content

Commit

Permalink
Fix FUNC_ENTER macro
Browse files Browse the repository at this point in the history
Signed-off-by: Quincey Koziol <[email protected]>
  • Loading branch information
qkoziol committed Mar 20, 2024
1 parent 450288e commit 2eeaa7f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/H5TSpool.c
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down Expand Up @@ -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))
Expand Down Expand Up @@ -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))
Expand Down

0 comments on commit 2eeaa7f

Please sign in to comment.