From 8005ba77507b57a3d380e30341c01d7ca5e2110b Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Tue, 21 Dec 2010 15:25:44 +0000 Subject: [PATCH] Correct preprocessor statement: without MT, DeadlockKiller would block any execution. git-svn-id: https://svn.dealii.org/trunk@23055 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/tests.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests.h b/tests/tests.h index f62b2bc423..6de468cbbd 100644 --- a/tests/tests.h +++ b/tests/tests.h @@ -124,7 +124,7 @@ set_grain_sizes; // // the actual sleep time isn't all that important. the point is that // we need to kill deadlocked threads at one point, whenever that is -#ifdef DEAL_II_USE_MT +#if DEAL_II_USE_MT == 1 struct DeadlockKiller { -- 2.39.5