Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
try to fix Apple privatization after recent default change
authorMartin Quinson <martin.quinson@loria.fr>
Sun, 24 Dec 2017 16:04:09 +0000 (17:04 +0100)
committerMartin Quinson <martin.quinson@loria.fr>
Sun, 24 Dec 2017 16:04:09 +0000 (17:04 +0100)
src/simix/smx_context.cpp

index 2e1f4cb..eb1b2b7 100644 (file)
@@ -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";
   }