X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/39c935d6d5ee86d153f6f7e6a10d723ae7c57f6f..d0d1912b2262e2aaf06b39115de5f846e2a86efe:/src/simix/smx_private.hpp?ds=sidebyside diff --git a/src/simix/smx_private.hpp b/src/simix/smx_private.hpp index 25ef012750..ddf9816859 100644 --- a/src/simix/smx_private.hpp +++ b/src/simix/smx_private.hpp @@ -22,20 +22,15 @@ namespace simix { class Global { public: - bool execute_tasks(); /** * Garbage collection * * Should be called some time to time to free the memory allocated for actors that have finished (or killed). */ void empty_trash(); - void run_all_actors(); - void wake_all_waiting_actors() const; void display_all_actor_status() const; kernel::context::ContextFactory* context_factory = nullptr; - std::vector actors_to_run; - std::vector actors_that_ran; std::map process_list; boost::intrusive::list, @@ -56,11 +51,6 @@ public: kernel::actor::ActorImpl* maestro_ = nullptr; std::mutex mutex; - - std::vector> tasks; - std::vector> tasksTemp; - - std::vector daemons; }; } }