From dd3cfb8db509f85eca11cfc351d32df832f3f388 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Sat, 13 Apr 2024 23:06:16 -0500 Subject: [PATCH] Update verbosity to debug Intel oneAPI builds Signed-off-by: Quincey Koziol --- src/H5TSpool.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/H5TSpool.c b/src/H5TSpool.c index a4790546385..30b27181412 100644 --- a/src/H5TSpool.c +++ b/src/H5TSpool.c @@ -206,6 +206,7 @@ herr_t H5TS_pool_create(H5TS_pool_t **pool, unsigned num_threads) { H5TS_pool_t *new_pool = NULL; /* Newly created pool */ + unsigned u; /* Local index variable */ herr_t ret_value = SUCCEED; FUNC_ENTER_NOAPI_NAMECHECK_ONLY @@ -235,7 +236,7 @@ H5TS_pool_create(H5TS_pool_t **pool, unsigned num_threads) new_pool->num_threads = num_threads; /* Start worker threads */ - for (unsigned u = 0; u < num_threads; u++) + for (u = 0; u < num_threads; u++) /* Create thread, which immediately starts processing tasks */ if (H5_UNLIKELY(H5TS_thread_create(&new_pool->threads[u], H5TS__pool_do, (void *)new_pool) < 0)) HGOTO_DONE(FAIL);