X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b7b9fb781045188e65beb5c1dfc391a2d21e5472..d33a14dc048378e654595318c473d0386bc3b514:/src/kernel/context/ContextThread.cpp diff --git a/src/kernel/context/ContextThread.cpp b/src/kernel/context/ContextThread.cpp index 7914f29e76..5f1f15975f 100644 --- a/src/kernel/context/ContextThread.cpp +++ b/src/kernel/context/ContextThread.cpp @@ -34,7 +34,7 @@ ThreadContextFactory::~ThreadContextFactory() ParallelThreadContext::finalize(); } -ThreadContext* ThreadContextFactory::create_context(std::function&& code, smx_actor_t actor, bool maestro) +ThreadContext* ThreadContextFactory::create_context(std::function&& code, actor::ActorImpl* actor, bool maestro) { if (parallel_) return this->new_context(std::move(code), actor, maestro); @@ -55,7 +55,7 @@ void ThreadContextFactory::run_all() // ThreadContext -ThreadContext::ThreadContext(std::function&& code, smx_actor_t actor, bool maestro) +ThreadContext::ThreadContext(std::function&& code, actor::ActorImpl* actor, bool maestro) : AttachContext(std::move(code), actor), is_maestro_(maestro) { /* If the user provided a function for the actor then use it */ @@ -106,7 +106,7 @@ void ThreadContext::wrapper(ThreadContext* context) XBT_DEBUG("Caught a ForcefulKillException in Thread::wrapper"); xbt_assert(not context->is_maestro(), "Maestro shall not receive ForcefulKillExceptions, even when detached."); } catch (simgrid::Exception const& e) { - XBT_INFO("Actor killed by an uncatched exception %s", simgrid::xbt::demangle(typeid(e).name()).get()); + XBT_INFO("Actor killed by an uncaught exception %s", simgrid::xbt::demangle(typeid(e).name()).get()); throw; } // Signal to the caller (normally the maestro) that we have finished: @@ -158,7 +158,7 @@ void ThreadContext::suspend() void ThreadContext::attach_start() { // We're breaking the layers here by depending on the upper layer: - ThreadContext* maestro = (ThreadContext*)simix_global->maestro_process->context_; + ThreadContext* maestro = static_cast(simix_global->maestro_->context_.get()); maestro->begin_.release(); xbt_assert(not this->is_maestro()); this->start(); @@ -169,7 +169,7 @@ void ThreadContext::attach_stop() xbt_assert(not this->is_maestro()); this->yield(); - ThreadContext* maestro = (ThreadContext*)simix_global->maestro_process->context_; + ThreadContext* maestro = static_cast(simix_global->maestro_->context_.get()); maestro->end_.acquire(); Context::set_current(nullptr); @@ -181,7 +181,7 @@ void SerialThreadContext::run_all() { for (smx_actor_t const& actor : simix_global->actors_to_run) { XBT_DEBUG("Handling %p", actor); - ThreadContext* context = static_cast(actor->context_); + ThreadContext* context = static_cast(actor->context_.get()); context->release(); context->wait(); } @@ -205,9 +205,9 @@ void ParallelThreadContext::finalize() void ParallelThreadContext::run_all() { for (smx_actor_t const& actor : simix_global->actors_to_run) - static_cast(actor->context_)->release(); + static_cast(actor->context_.get())->release(); for (smx_actor_t const& actor : simix_global->actors_to_run) - static_cast(actor->context_)->wait(); + static_cast(actor->context_.get())->wait(); } void ParallelThreadContext::start_hook() @@ -227,4 +227,6 @@ XBT_PRIVATE ContextFactory* thread_factory() XBT_VERB("Activating thread context factory"); return new ThreadContextFactory(); } -}}} // namespace +} // namespace context +} // namespace kernel +} // namespace simgrid