X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/55b17883ef3f90e6d5899e321610d6716e2d0928..60b3f1d683ffdc0ec72d8ec1c3bbc57e53b44596:/src/kernel/actor/ActorImpl.hpp diff --git a/src/kernel/actor/ActorImpl.hpp b/src/kernel/actor/ActorImpl.hpp index f4ee3a8857..caef390209 100644 --- a/src/kernel/actor/ActorImpl.hpp +++ b/src/kernel/actor/ActorImpl.hpp @@ -65,7 +65,9 @@ public: activity::ActivityImplPtr waiting_synchro = nullptr; /* the current blocking synchro if any */ std::list comms; /* the current non-blocking communication synchros */ s_smx_simcall simcall; - std::vector> on_exit; /* list of functions executed when the process dies */ + /* list of functions executed when the process dies */ + const std::shared_ptr>> on_exit = + std::make_shared>>(); std::function code; simix::Timer* kill_timer = nullptr; @@ -105,9 +107,9 @@ public: ActorImpl* start(const simix::ActorCode& code); static ActorImplPtr create(const std::string& name, const simix::ActorCode& code, void* data, s4u::Host* host, - std::unordered_map* properties, ActorImpl* parent_actor); + const std::unordered_map* properties, ActorImpl* parent_actor); static ActorImplPtr attach(const std::string& name, void* data, s4u::Host* host, - std::unordered_map* properties); + const std::unordered_map* properties); static void detach(); void cleanup(); void exit(); @@ -133,9 +135,12 @@ public: void* data = nullptr; s4u::Host* host = nullptr; double kill_time = 0.0; - std::shared_ptr> properties = nullptr; + std::shared_ptr> properties = nullptr; bool auto_restart = false; bool daemon_ = false; + /* list of functions executed when the process dies */ + const std::shared_ptr>> on_exit; + ProcessArg() = default; explicit ProcessArg(const std::string& name, const std::function& code, void* data, s4u::Host* host, @@ -159,6 +164,7 @@ public: , kill_time(actor->get_kill_time()) , auto_restart(actor->has_to_auto_restart()) , daemon_(actor->is_daemon()) + , on_exit(actor->on_exit) { properties.reset(actor->get_properties(), [](decltype(actor->get_properties())) {}); } @@ -176,6 +182,4 @@ XBT_PUBLIC void create_maestro(const std::function& code); extern void (*SMPI_switch_data_segment)(simgrid::s4u::ActorPtr actor); -XBT_PRIVATE void SIMIX_process_sleep_destroy(simgrid::kernel::activity::SleepImplPtr synchro); - #endif