From d995582f464470527ad64e43db021e0c863d349f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A5l=20Gr=C3=B8n=C3=A5s=20Drange?= Date: Wed, 18 May 2016 16:11:57 +0200 Subject: [PATCH] trying disabling async output default setting --- opm/autodiff/SimulatorFullyImplicitBlackoilOutput.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opm/autodiff/SimulatorFullyImplicitBlackoilOutput.hpp b/opm/autodiff/SimulatorFullyImplicitBlackoilOutput.hpp index 529317109..fa54b4325 100644 --- a/opm/autodiff/SimulatorFullyImplicitBlackoilOutput.hpp +++ b/opm/autodiff/SimulatorFullyImplicitBlackoilOutput.hpp @@ -316,7 +316,7 @@ namespace Opm // create output thread if enabled and rank is I/O rank // async output is enabled by default if pthread are enabled #if HAVE_PTHREAD - const bool asyncOutputDefault = true; + const bool asyncOutputDefault = false; #else const bool asyncOutputDefault = false; #endif