summaryrefslogtreecommitdiffstats
path: root/test/thread_id.c
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-02-03 22:33:28 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-05-11 20:32:40 (GMT)
commitc0fa07fd9fc1c4b0aab116c6c278142384a440b9 (patch)
tree283344727769a5e31c0787c94e349e767c20bea9 /test/thread_id.c
parentc97981da3620cff7f789516dd9dff5ffde86d6d8 (diff)
downloadhdf5-c0fa07fd9fc1c4b0aab116c6c278142384a440b9.zip
hdf5-c0fa07fd9fc1c4b0aab116c6c278142384a440b9.tar.gz
hdf5-c0fa07fd9fc1c4b0aab116c6c278142384a440b9.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/thread_id.c')
-rw-r--r--test/thread_id.c4
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;