X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/05f5ac1cf29cac64be9a5615f4b7d6e3a33beb88..cb305a8cc20cc267f909dca81b06a7036f3bc639:/src/kernel/context/ContextThread.cpp diff --git a/src/kernel/context/ContextThread.cpp b/src/kernel/context/ContextThread.cpp index 7b25fc6d9c..a29203fae6 100644 --- a/src/kernel/context/ContextThread.cpp +++ b/src/kernel/context/ContextThread.cpp @@ -157,7 +157,7 @@ void ThreadContext::suspend() void ThreadContext::attach_start() { // We're breaking the layers here by depending on the upper layer: - auto* maestro = static_cast(simix_global->maestro_->context_.get()); + auto* maestro = static_cast(simix_global->get_maestro()->context_.get()); maestro->begin_.release(); xbt_assert(not this->is_maestro()); this->start(); @@ -168,7 +168,7 @@ void ThreadContext::attach_stop() xbt_assert(not this->is_maestro()); this->yield(); - auto* maestro = static_cast(simix_global->maestro_->context_.get()); + auto* maestro = static_cast(simix_global->get_maestro()->context_.get()); maestro->end_.acquire(); Context::set_current(nullptr);