From: Arnaud Giersch Date: Fri, 8 Mar 2019 14:47:58 +0000 (+0100) Subject: Make SwappedContext::parmap_ a std::unique_ptr. X-Git-Tag: v3_22~131 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/fa0bb7e4203ef24f51ea4f8d1a8abe376e4885d5 Make SwappedContext::parmap_ a std::unique_ptr. --- diff --git a/src/kernel/context/ContextSwapped.cpp b/src/kernel/context/ContextSwapped.cpp index 2fd0f477a9..0b59cd8237 100644 --- a/src/kernel/context/ContextSwapped.cpp +++ b/src/kernel/context/ContextSwapped.cpp @@ -43,10 +43,6 @@ SwappedContextFactory::SwappedContextFactory() : ContextFactory(), parallel_(SIM parmap_ = nullptr; // will be created lazily with the right parameters if needed (ie, in parallel) workers_context_.resize(parallel_ ? SIMIX_context_get_nthreads() : 1, nullptr); } -SwappedContextFactory::~SwappedContextFactory() -{ - delete parmap_; -} SwappedContext::SwappedContext(std::function&& code, smx_actor_t actor, SwappedContextFactory* factory) : Context(std::move(code), actor), factory_(factory) @@ -164,7 +160,8 @@ void SwappedContextFactory::run_all() // We lazily create the parmap so that all options are actually processed when doing so. if (parmap_ == nullptr) - parmap_ = new simgrid::xbt::Parmap(SIMIX_context_get_nthreads(), SIMIX_context_get_parallel_mode()); + parmap_.reset( + new simgrid::xbt::Parmap(SIMIX_context_get_nthreads(), SIMIX_context_get_parallel_mode())); // Usually, Parmap::apply() executes the provided function on all elements of the array. // Here, the executed function does not return the control to the parmap before all the array is processed: diff --git a/src/kernel/context/ContextSwapped.hpp b/src/kernel/context/ContextSwapped.hpp index 9e8796d53f..ad888cd9d5 100644 --- a/src/kernel/context/ContextSwapped.hpp +++ b/src/kernel/context/ContextSwapped.hpp @@ -8,6 +8,7 @@ #include "src/kernel/context/Context.hpp" +#include #include namespace simgrid { @@ -21,7 +22,6 @@ public: SwappedContextFactory(); SwappedContextFactory(const SwappedContextFactory&) = delete; SwappedContextFactory& operator=(const SwappedContextFactory&) = delete; - ~SwappedContextFactory() override; void run_all() override; private: @@ -30,7 +30,7 @@ private: unsigned long process_index_ = 0; // Next actor to execute during sequential run_all() /* For the parallel execution */ - simgrid::xbt::Parmap* parmap_; + std::unique_ptr> parmap_; std::vector workers_context_; /* space to save the worker's context in each thread */ std::atomic threads_working_{0}; /* number of threads that have started their work */ };