X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/19016c1363a1c0409a35940ad406e88057fdba73..465dac153770a28f3a334705a06a1ee7a457c965:/src/kernel/context/Context.hpp diff --git a/src/kernel/context/Context.hpp b/src/kernel/context/Context.hpp index 9a6ace7189..10ddbe6000 100644 --- a/src/kernel/context/Context.hpp +++ b/src/kernel/context/Context.hpp @@ -57,14 +57,14 @@ private: public: bool iwannadie = false; - Context(std::function code, void_pfn_smxprocess_t cleanup_func, smx_actor_t process); + Context(std::function code, void_pfn_smxprocess_t cleanup_func, smx_actor_t actor); Context(const Context&) = delete; Context& operator=(const Context&) = delete; virtual ~Context(); void operator()() { code_(); } bool has_code() const { return static_cast(code_); } - smx_actor_t process() { return this->actor_; } + smx_actor_t get_actor() { return this->actor_; } void set_cleanup(void_pfn_smxprocess_t cleanup) { cleanup_func_ = cleanup; } // Scheduling methods