X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1fada0c05d54537c3d7545b45dd00d69424379d7..61ab0b23d55ea10365ba11d22b8c11b39cbf16e9:/src/simix/smx_context.cpp diff --git a/src/simix/smx_context.cpp b/src/simix/smx_context.cpp index 719f7d6fae..55bb5e8970 100644 --- a/src/simix/smx_context.cpp +++ b/src/simix/smx_context.cpp @@ -97,8 +97,8 @@ void SIMIX_context_mod_init() { xbt_assert(simix_global->context_factory == nullptr); - smx_context_stack_size_was_set = not xbt_cfg_is_default_value("contexts/stack-size"); - smx_context_guard_size_was_set = not xbt_cfg_is_default_value("contexts/guard-size"); + smx_context_stack_size_was_set = not simgrid::config::is_default("contexts/stack-size"); + smx_context_guard_size_was_set = not simgrid::config::is_default("contexts/guard-size"); #if HAVE_THREAD_CONTEXTS && not HAVE_THREAD_LOCAL_STORAGE /* the __thread storage class is not available on this platform: @@ -107,7 +107,7 @@ void SIMIX_context_mod_init() #endif #if HAVE_SMPI && (defined(__APPLE__) || defined(__NetBSD__)) - std::string priv = simgrid::config::get_config("smpi/privatization"); + 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."); context_factory_name = "raw"; @@ -115,7 +115,7 @@ void SIMIX_context_mod_init() #endif #if HAVE_SMPI && defined(__FreeBSD__) - if (context_factory_name == "thread" && simgrid::config::get_config("smpi/privatization") != "no") { + 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"; }