X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4bcf485d96ae068fab03b764d00afca812463229..ccd4b5d32f5721eedd11d375e7453694c638834a:/src/simix/smx_context.cpp diff --git a/src/simix/smx_context.cpp b/src/simix/smx_context.cpp index 3f78c9805f..2d40401182 100644 --- a/src/simix/smx_context.cpp +++ b/src/simix/smx_context.cpp @@ -61,7 +61,7 @@ void SIMIX_context_mod_init() xbt_assert(not simix_global->has_context_factory()); #if HAVE_SMPI && (defined(__APPLE__) || defined(__NetBSD__)) - smpi_init_options(); + smpi_init_options_internal(false); std::string priv = simgrid::config::get_value("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."); @@ -70,7 +70,7 @@ void SIMIX_context_mod_init() #endif #if HAVE_SMPI && defined(__FreeBSD__) - smpi_init_options(); + smpi_init_options_internal(false); if (context_factory_name == "thread" && simgrid::config::get_value("smpi/privatization") != "no") { XBT_WARN("mmap broken on FreeBSD, but dlopen+thread broken too. Switching to dlopen+raw contexts."); context_factory_name = "raw";