From f68e431799211d9bf99d5ce46cfcdead7055f1ab Mon Sep 17 00:00:00 2001 From: maier Date: Wed, 18 Dec 2013 13:20:14 +0000 Subject: [PATCH] Remove an offending Assertion in tbb git-svn-id: https://svn.dealii.org/branches/releases/Branch-8-1@32046 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/bundled/tbb41_20130401oss/src/tbb/arena.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deal.II/bundled/tbb41_20130401oss/src/tbb/arena.cpp b/deal.II/bundled/tbb41_20130401oss/src/tbb/arena.cpp index 52a5433717..3b3372cd9e 100644 --- a/deal.II/bundled/tbb41_20130401oss/src/tbb/arena.cpp +++ b/deal.II/bundled/tbb41_20130401oss/src/tbb/arena.cpp @@ -314,7 +314,8 @@ inline bool arena::may_have_tasks ( generic_scheduler* s, arena_slot& slot, bool if ( !s ) { // This slot is vacant __TBB_ASSERT( slot.task_pool == EmptyTaskPool, NULL ); - __TBB_ASSERT( slot.tail == slot.head, "Someone is tinkering with a vacant arena slot" ); + // Disable this assertion - 2013 maier + // __TBB_ASSERT( slot.tail == slot.head, "Someone is tinkering with a vacant arena slot" ); return false; } dequeuing_possible |= s->worker_outermost_level(); -- 2.39.5