Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
put back the fix for broken dlopen+thread on freebsd
authorAugustin Degomme <augustin.degomme@unibas.ch>
Fri, 22 Dec 2017 04:22:31 +0000 (05:22 +0100)
committerAugustin Degomme <augustin.degomme@unibas.ch>
Fri, 22 Dec 2017 04:24:13 +0000 (05:24 +0100)
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 */