X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/728192b2ae7052c8f1ee2bbedf3346af46127e49..3baaf982217fbc818965e8ed71c3ec91e96844d5:/src/kernel/context/ContextUnix.cpp diff --git a/src/kernel/context/ContextUnix.cpp b/src/kernel/context/ContextUnix.cpp index 727ffb8a8c..de67f76e93 100644 --- a/src/kernel/context/ContextUnix.cpp +++ b/src/kernel/context/ContextUnix.cpp @@ -30,37 +30,35 @@ namespace kernel { namespace context { // UContextFactory -Context* UContextFactory::create_context(std::function code, void_pfn_smxprocess_t cleanup, smx_actor_t process) +Context* UContextFactory::create_context(std::function code, void_pfn_smxprocess_t cleanup, smx_actor_t actor) { - return new_context(std::move(code), cleanup, process, this); + return new_context(std::move(code), cleanup, actor, this); } // UContext -UContext::UContext(std::function code, void_pfn_smxprocess_t cleanup_func, smx_actor_t process, +UContext::UContext(std::function code, void_pfn_smxprocess_t cleanup_func, smx_actor_t actor, SwappedContextFactory* factory) - : SwappedContext(std::move(code), cleanup_func, process, factory) + : SwappedContext(std::move(code), cleanup_func, actor, factory) { /* if the user provided a function for the process then use it, otherwise it is the context for maestro */ if (has_code()) { getcontext(&this->uc_); this->uc_.uc_link = nullptr; - this->uc_.uc_stack.ss_sp = sg_makecontext_stack_addr(this->stack_); + this->uc_.uc_stack.ss_sp = sg_makecontext_stack_addr(get_stack()); this->uc_.uc_stack.ss_size = sg_makecontext_stack_size(smx_context_usable_stack_size); #if PTH_STACKGROWTH == -1 - ASAN_ONLY(this->asan_stack_ = static_cast(this->stack_) + smx_context_usable_stack_size); + ASAN_ONLY(this->asan_stack_ = static_cast(get_stack()) + smx_context_usable_stack_size); #else - ASAN_ONLY(this->asan_stack_ = this->stack_); + ASAN_ONLY(this->asan_stack_ = get_stack()); #endif UContext::make_ctx(&this->uc_, UContext::smx_ctx_sysv_wrapper, this); - } else { - set_maestro(this); // save maestro for run_all() } #if SIMGRID_HAVE_MC if (MC_is_active() && has_code()) { - MC_register_stack_area(this->stack_, process, &(this->uc_), smx_context_usable_stack_size); + MC_register_stack_area(get_stack(), actor, &(this->uc_), smx_context_usable_stack_size); } #endif }