X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/121b00bee831d631cfe3ccd1cf5df8301de47073..3baaf982217fbc818965e8ed71c3ec91e96844d5:/src/kernel/context/Context.cpp diff --git a/src/kernel/context/Context.cpp b/src/kernel/context/Context.cpp index cdce4e0546..385753e74b 100644 --- a/src/kernel/context/Context.cpp +++ b/src/kernel/context/Context.cpp @@ -21,7 +21,6 @@ smx_context_t SIMIX_context_new( void_pfn_smxprocess_t cleanup_func, smx_actor_t simix_process) { - xbt_assert(simix_global, "simix is not initialized, please call MSG_init first"); return simix_global->context_factory->create_context( std::move(code), cleanup_func, simix_process); } @@ -84,7 +83,7 @@ void Context::stop() { if (this->cleanup_func_) this->cleanup_func_(this->actor_); - this->actor_->suspended_ = 0; + this->actor_->suspended_ = false; this->iwannadie = false; simgrid::simix::simcall([this] { SIMIX_process_cleanup(this->actor_); });