X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5d0ee745165abb321ef9b2c494b6490cbe7922aa..d7bc42299b363a112f3b8154e95cd80706cda6d2:/include/simgrid/s4u/Engine.hpp diff --git a/include/simgrid/s4u/Engine.hpp b/include/simgrid/s4u/Engine.hpp index 3e620e4541..56af65fe32 100644 --- a/include/simgrid/s4u/Engine.hpp +++ b/include/simgrid/s4u/Engine.hpp @@ -105,10 +105,6 @@ protected: friend kernel::routing::NetZoneImpl; friend kernel::resource::HostImpl; friend kernel::resource::StandardLinkImpl; - void host_register(const std::string& name, Host* host); - void host_unregister(const std::string& name); - void link_register(const std::string& name, const Link* link); - void link_unregister(const std::string& name); void netpoint_register(simgrid::kernel::routing::NetPoint* card); void netpoint_unregister(simgrid::kernel::routing::NetPoint* card); void set_netzone_root(const NetZone* netzone); @@ -200,7 +196,8 @@ public: static void set_config(const std::string& name, double value); static void set_config(const std::string& name, const std::string& value); - Engine* set_default_comm_data_copy_callback(void (*callback)(kernel::activity::CommImpl*, void*, size_t)); + Engine* + set_default_comm_data_copy_callback(const std::function& callback); /** Add a callback fired when the platform is created (ie, the xml file parsed), * right before the actual simulation starts. */ @@ -208,6 +205,8 @@ public: /** Add a callback fired when the platform is about to be created * (ie, after any configuration change and just before the resource creation) */ static void on_platform_creation_cb(const std::function& cb) { on_platform_creation.connect(cb); } + /** Add a callback fired when the main simulation loop starts, at the beginning of the first call to Engine::run() */ + static void on_simulation_start_cb(const std::function& cb) { on_simulation_start.connect(cb); } /** Add a callback fired when the main simulation loop ends, just before the end of Engine::run() */ static void on_simulation_end_cb(const std::function& cb) { on_simulation_end.connect(cb); } @@ -228,9 +227,11 @@ public: #endif private: - static xbt::signal on_simulation_end; + static xbt::signal on_simulation_start; static xbt::signal on_time_advance; static xbt::signal on_deadlock; + static xbt::signal on_simulation_end; + kernel::EngineImpl* const pimpl; static Engine* instance_; void initialize(int* argc, char** argv);