From: Martin Kronbichler Date: Tue, 21 Dec 2010 15:25:44 +0000 (+0000) Subject: Correct preprocessor statement: without MT, DeadlockKiller would block any execution. X-Git-Tag: v8.0.0~4604 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8005ba77507b57a3d380e30341c01d7ca5e2110b;p=dealii.git Correct preprocessor statement: without MT, DeadlockKiller would block any execution. git-svn-id: https://svn.dealii.org/trunk@23055 0785d39b-7218-0410-832d-ea1e28bc413d --- 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 {