From 7609204fbad65580a353ebc44bb605179ac56e2c Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Sat, 13 Apr 2024 22:13:17 -0500 Subject: [PATCH] Update verbosity to debug Intel oneAPI builds Signed-off-by: Quincey Koziol --- src/H5TSpool.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/H5TSpool.c b/src/H5TSpool.c index 73d6efc4fad..08afd35709d 100644 --- a/src/H5TSpool.c +++ b/src/H5TSpool.c @@ -199,11 +199,13 @@ H5TS__pool_do(void *_pool) } done: + fprintf(stderr, "%s:%u - have_mutex = %u\n", __func__, __LINE__, have_mutex); /* Release the pool's mutex, if we're holding it */ if (have_mutex) if (H5_UNLIKELY(H5TS_mutex_unlock(&pool->mutex) < 0)) ret_value = (H5TS_thread_ret_t)1; + fprintf(stderr, "%s:%u\n", __func__, __LINE__); FUNC_LEAVE_NOAPI_NAMECHECK_ONLY(ret_value) } /* end H5TS__pool_do() */