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 8ccd6f3..547a37e 100644 (file)
@@ -21,7 +21,6 @@
 #include "smx_private.hpp"
 #include "src/internal_config.h"
 #include "xbt/log.h"
-#include "xbt/swag.h"
 #include "xbt/xbt_os_thread.h"
 
 #ifdef _WIN32
@@ -111,10 +110,15 @@ void SIMIX_context_mod_init()
   }
 #endif
 #if defined(__FreeBSD__)
-  if (context_factory_name == "thread" && xbt_cfg_get_string("smpi/privatization") != "no") {
+  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";
   }
+}
 #endif
 
   /* select the context factory to use to create the contexts */