From 445b1c29ad30edb6f53a207b784f4a5a16659467 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Sun, 24 Dec 2017 17:04:09 +0100 Subject: [PATCH] try to fix Apple privatization after recent default change --- src/simix/smx_context.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/simix/smx_context.cpp b/src/simix/smx_context.cpp index 2e1f4cb75f..eb1b2b76ad 100644 --- a/src/simix/smx_context.cpp +++ b/src/simix/smx_context.cpp @@ -104,7 +104,8 @@ void SIMIX_context_mod_init() #endif #if defined(__APPLE__) || defined(__NetBSD__) - if (context_factory_name == "thread" && xbt_cfg_get_string("smpi/privatization") == "dlopen") { + std::string priv = xbt_cfg_get_string("smpi/privatization"); + if (context_factory_name == "thread" && (priv == "dlopen" || priv == "yes" || priv == "default" || priv == "1")) { XBT_WARN("dlopen+thread broken on Apple and BSD. Switching to raw contexts."); context_factory_name = "raw"; } -- 2.30.2