Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
put back the fix for broken dlopen+thread on freebsd
[simgrid.git] / src / simix / smx_context.cpp
index e6b6c4e..547a37e 100644 (file)
@@ -111,10 +111,14 @@ void SIMIX_context_mod_init()
 #endif
 #if defined(__FreeBSD__)
   if (xbt_cfg_get_string("smpi/privatization") == "mmap") {
+    xbt_cfg_set_string("smpi/privatization", "dlopen");
+  }
+
+  if (context_factory_name == "thread" && xbt_cfg_get_string("smpi/privatization") != "no"){
     XBT_WARN("mmap broken on FreeBSD, but dlopen+thread broken too. Switching to dlopen+raw contexts.");
     context_factory_name = "raw";
-    xbt_cfg_set_string("smpi/privatization", "dlopen");
   }
+}
 #endif
 
   /* select the context factory to use to create the contexts */