From 5b9ce2728c4614206ff6c3dda4aa4f3f6282217c Mon Sep 17 00:00:00 2001 From: Robert Kloefkorn <robertk@ucar.edu> Date: Thu, 30 Jan 2014 21:07:00 -0700 Subject: [PATCH] avoid pending communication --- dune/fem-dg/pass/threadpass.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dune/fem-dg/pass/threadpass.hh b/dune/fem-dg/pass/threadpass.hh index 31bbbc52..1930e2a7 100644 --- a/dune/fem-dg/pass/threadpass.hh +++ b/dune/fem-dg/pass/threadpass.hh @@ -523,7 +523,7 @@ namespace Dune { //! return true if communication is necessary and non-blocking should be used bool useNonBlockingCommunication() const { - return requireCommunication_ && nonBlockingComm_.nonBlockingCommunication() && firstCall_ == false ; + return requireCommunication_ && nonBlockingComm_.nonBlockingCommunication(); } void initComm() const -- GitLab