X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c97656604936a7d3000ee3c98e0926b80f6f2150..5ff119db4c1bee3bb8e1b9693dfd382cb462db57:/src/simix/smx_private.hpp diff --git a/src/simix/smx_private.hpp b/src/simix/smx_private.hpp index 54fdcac886..227c83f53c 100644 --- a/src/simix/smx_private.hpp +++ b/src/simix/smx_private.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2021. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -22,7 +22,6 @@ namespace simix { class Global { public: - bool execute_tasks(); /** * Garbage collection * @@ -30,10 +29,9 @@ public: */ void empty_trash(); void run_all_actors(); - void wake_all_waiting_actors(); - void display_all_actor_status(); + void display_all_actor_status() const; - smx_context_factory_t context_factory = nullptr; + kernel::context::ContextFactory* context_factory = nullptr; std::vector actors_to_run; std::vector actors_that_ran; std::map process_list; @@ -56,11 +54,6 @@ public: kernel::actor::ActorImpl* maestro_ = nullptr; std::mutex mutex; - - std::vector> tasks; - std::vector> tasksTemp; - - std::vector daemons; }; } }