X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ea74f5d95928a521a588737e81f1de94eef25d19..f9b13d923d31bb0336aeeaab6d5b7ba33812f3f7:/src/kernel/actor/ActorImpl.hpp?ds=sidebyside diff --git a/src/kernel/actor/ActorImpl.hpp b/src/kernel/actor/ActorImpl.hpp index 678de9a206..a1672be199 100644 --- a/src/kernel/actor/ActorImpl.hpp +++ b/src/kernel/actor/ActorImpl.hpp @@ -49,7 +49,7 @@ public: const char* get_cname() const { return name_.c_str(); } // Accessors to private fields - s4u::Host* get_host() { return host_; } + s4u::Host* get_host() const { return host_; } void set_host(s4u::Host* dest); aid_t get_pid() const { return pid_; } aid_t get_ppid() const { return ppid_; } @@ -71,7 +71,6 @@ public: activity::ActivityImplPtr waiting_synchro_ = nullptr; /* the current blocking synchro if any */ std::list activities_; /* the current non-blocking synchros */ s_smx_simcall simcall_; - std::vector observer_stack_; /* list of functions executed when the actor dies */ std::shared_ptr>> on_exit = std::make_shared>>(); @@ -181,7 +180,7 @@ public: explicit ProcessArg(s4u::Host* host, ActorImpl* actor) : name(actor->get_name()) , code(actor->code_) - , data(actor->get_ciface()->get_data()) + , data(actor->get_ciface()->get_data()) , host(host) , kill_time(actor->get_kill_time()) , auto_restart(actor->has_to_auto_restart())