diff options
author | David Young <dyoung@hdfgroup.org> | 2020-02-03 22:33:28 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-02-03 22:33:28 (GMT) |
commit | cefacee21b5ad569e2394b32793648e1b80f3d6b (patch) | |
tree | fe6f4535f5171c257b20c3ee00507062e0ac5004 /test | |
parent | a20b68b25796d94f1159156acf97322326565c93 (diff) | |
download | hdf5-cefacee21b5ad569e2394b32793648e1b80f3d6b.zip hdf5-cefacee21b5ad569e2394b32793648e1b80f3d6b.tar.gz hdf5-cefacee21b5ad569e2394b32793648e1b80f3d6b.tar.bz2 |
src/H5Eint.c: #include H5TSprivate.h for H5TS_thread_id() definitions.
test/thread_id.c: move threads_failure() inside #ifdefs.
Diffstat (limited to 'test')
-rw-r--r-- | test/thread_id.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/thread_id.c b/test/thread_id.c index 75ffe17..8f6e2d5 100644 --- a/test/thread_id.c +++ b/test/thread_id.c @@ -26,13 +26,13 @@ */ #include "testhdf5.h" +#if defined(H5_HAVE_THREADSAFE) && !defined(H5_HAVE_WIN_THREADS) + #define threads_failure(_call, _result) do { \ errx(EXIT_FAILURE, "%s.%d: " #_call ": %s", __func__, \ __LINE__, strerror(_result)); \ } while (false) -#if defined(H5_HAVE_THREADSAFE) && !defined(H5_HAVE_WIN_THREADS) - #define NTHREADS 5 static volatile bool failed = false; |