X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/863aeead864a309c494893a1b06ec33ed2b7daf1..f734ec7475682eb90323e804cbcfddd7e4523992:/src/simix/smx_context.cpp?ds=sidebyside diff --git a/src/simix/smx_context.cpp b/src/simix/smx_context.cpp index 5906e9d9d1..217dbe561d 100644 --- a/src/simix/smx_context.cpp +++ b/src/simix/smx_context.cpp @@ -20,7 +20,7 @@ #include "xbt/log.h" #include "xbt/swag.h" #include "xbt/xbt_os_thread.h" -#include "smx_private.h" +#include "smx_private.hpp" #include "simgrid/sg_config.h" #include "src/internal_config.h" #include "simgrid/modelchecker.h" @@ -79,9 +79,9 @@ static simgrid::config::Flag context_factory_name( (std::string("Possible values: ")+contexts_list()).c_str(), context_factories[0].first); -int smx_context_stack_size; +unsigned smx_context_stack_size; int smx_context_stack_size_was_set = 0; -int smx_context_guard_size; +unsigned smx_context_guard_size; int smx_context_guard_size_was_set = 0; #if HAVE_THREAD_LOCAL_STORAGE static XBT_THREAD_LOCAL smx_context_t smx_current_context_parallel;