Skip to content

Commit

Permalink
Update verbosity to debug Intel oneAPI builds
Browse files Browse the repository at this point in the history
Signed-off-by: Quincey Koziol <[email protected]>
  • Loading branch information
qkoziol committed Apr 14, 2024
1 parent f014f7c commit 7609204
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/H5TSpool.c
Original file line number Diff line number Diff line change
Expand Up @@ -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() */

Expand Down

0 comments on commit 7609204

Please sign in to comment.