X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8169cc28d9d7ffe1ea91011fdcb2206d33d40fec..f9b13d923d31bb0336aeeaab6d5b7ba33812f3f7:/src/kernel/actor/ActorImpl.hpp diff --git a/src/kernel/actor/ActorImpl.hpp b/src/kernel/actor/ActorImpl.hpp index aa4ec1b970..a1672be199 100644 --- a/src/kernel/actor/ActorImpl.hpp +++ b/src/kernel/actor/ActorImpl.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2021. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2022. 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. */ @@ -6,6 +6,7 @@ #ifndef SIMGRID_KERNEL_ACTOR_ACTORIMPL_HPP #define SIMGRID_KERNEL_ACTOR_ACTORIMPL_HPP +#include "simgrid/kernel/Timer.hpp" #include "simgrid/s4u/Actor.hpp" #include "src/simix/popping_private.hpp" #include "xbt/PropertyHolder.hpp" @@ -21,7 +22,6 @@ namespace actor { class XBT_PUBLIC ActorImpl : public xbt::PropertyHolder { s4u::Host* host_ = nullptr; /* the host on which the actor is running */ - void* userdata_ = nullptr; /* XBT_ATTRIB_DEPRECATED_v329 kept for compatibility, should be replaced with moddata */ aid_t pid_ = 0; aid_t ppid_ = -1; bool daemon_ = false; /* Daemon actors are automatically killed when the last non-daemon leaves */ @@ -41,22 +41,22 @@ public: static ActorImpl* self(); double get_kill_time() const; void set_kill_time(double kill_time); - boost::intrusive::list_member_hook<> host_actor_list_hook; /* simgrid::simix::Host::process_list */ - boost::intrusive::list_member_hook<> smx_destroy_list_hook; /* simix_global->actors_to_destroy */ + boost::intrusive::list_member_hook<> host_actor_list_hook; /* resource::HostImpl::actor_list_ */ + boost::intrusive::list_member_hook<> kernel_destroy_list_hook; /* EngineImpl actors_to_destroy */ boost::intrusive::list_member_hook<> smx_synchro_hook; /* {mutex,cond,sem}->sleeping */ const xbt::string& get_name() const { return name_; } 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); - void* get_user_data() { return userdata_; } // XBT_ATTRIB_DEPRECATED_v329 - void set_user_data(void* data) { userdata_ = data; } // XBT_ATTRIB_DEPRECATED_v329 aid_t get_pid() const { return pid_; } aid_t get_ppid() const { return ppid_; } void set_ppid(aid_t ppid) { ppid_ = ppid; } bool is_daemon() const { return daemon_; } /** Whether this actor has been daemonized */ + bool is_maestro() const; /** Whether this actor is actually maestro (cheap call but may segfault before actor creation + / after terminaison) */ bool has_to_auto_restart() const { return auto_restart_; } void set_auto_restart(bool autorestart) { auto_restart_ = autorestart; } void set_stacksize(unsigned stacksize) { stacksize_ = stacksize; } @@ -71,12 +71,12 @@ public: activity::ActivityImplPtr waiting_synchro_ = nullptr; /* the current blocking synchro if any */ std::list activities_; /* the current non-blocking synchros */ s_smx_simcall simcall_; - /* list of functions executed when the process dies */ + /* list of functions executed when the actor dies */ std::shared_ptr>> on_exit = std::make_shared>>(); std::function code_; - simix::Timer* kill_timer_ = nullptr; + timer::Timer* kill_timer_ = nullptr; private: /* Refcounting */ @@ -157,7 +157,7 @@ public: const std::unordered_map properties{}; bool auto_restart = false; bool daemon_ = false; - /* list of functions executed when the process dies */ + /* list of functions executed when the actor dies */ const std::shared_ptr>> on_exit; ProcessArg() = delete; @@ -180,7 +180,7 @@ public: explicit ProcessArg(s4u::Host* host, ActorImpl* actor) : name(actor->get_name()) , code(actor->code_) - , data(actor->get_user_data()) + , data(actor->get_ciface()->get_data()) , host(host) , kill_time(actor->get_kill_time()) , auto_restart(actor->has_to_auto_restart()) @@ -203,6 +203,4 @@ XBT_PUBLIC unsigned long* get_maxpid_addr(); // In MC mode, the application send } // namespace kernel } // namespace simgrid -extern void (*SMPI_switch_data_segment)(simgrid::s4u::ActorPtr actor); - #endif