X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e816186fdeaf53fa5abf6886f157c499e09c4622..001737a15701027974d89260771284a45013d2cd:/src/kernel/context/ContextThread.hpp diff --git a/src/kernel/context/ContextThread.hpp b/src/kernel/context/ContextThread.hpp index 0dfc83b44f..720e54b229 100644 --- a/src/kernel/context/ContextThread.hpp +++ b/src/kernel/context/ContextThread.hpp @@ -11,7 +11,6 @@ #include "simgrid/simix.hpp" #include "src/kernel/context/Context.hpp" #include "src/xbt/OsSemaphore.hpp" -#include "xbt/xbt_os_thread.h" #include @@ -21,7 +20,9 @@ namespace context { class XBT_PUBLIC ThreadContext : public AttachContext { public: - ThreadContext(std::function code, void_pfn_smxprocess_t cleanup_func, smx_actor_t process, bool maestro); + ThreadContext(std::function&& code, actor::ActorImpl* actor, bool maestro); + ThreadContext(const ThreadContext&) = delete; + ThreadContext& operator=(const ThreadContext&) = delete; ~ThreadContext() override; void stop() override; void suspend() override; @@ -35,7 +36,7 @@ public: private: /** A portable thread */ std::thread* thread_ = nullptr; - /** Semaphore used to schedule/yield the process (not needed when the maestro is in main, but harmless then) */ + /** Semaphore used to schedule/yield the actor (not needed when the maestro is in main, but harmless then) */ xbt::OsSemaphore begin_{0}; /** Semaphore used to schedule/unschedule (not needed when the maestro is in main, but harmless then) */ xbt::OsSemaphore end_{0}; @@ -45,14 +46,15 @@ private: void yield(); // match a call to yield() virtual void start_hook() { /* empty placeholder, called after start(). Used in parallel mode and Java */} virtual void yield_hook() { /* empty placeholder, called before yield(). Used in parallel mode */} + virtual void stop_hook() { /* empty placeholder, called at stop(). Used in Java */} - static void* wrapper(void *param); + static void wrapper(ThreadContext* context); }; class XBT_PUBLIC SerialThreadContext : public ThreadContext { public: - SerialThreadContext(std::function code, void_pfn_smxprocess_t cleanup_func, smx_actor_t process, bool maestro) - : ThreadContext(std::move(code), cleanup_func, process, maestro) + SerialThreadContext(std::function&& code, actor::ActorImpl* actor, bool maestro) + : ThreadContext(std::move(code), actor, maestro) { } @@ -61,9 +63,8 @@ public: class ParallelThreadContext : public ThreadContext { public: - ParallelThreadContext(std::function code, void_pfn_smxprocess_t cleanup_func, smx_actor_t process, - bool maestro) - : ThreadContext(std::move(code), cleanup_func, process, maestro) + ParallelThreadContext(std::function&& code, actor::ActorImpl* actor, bool maestro) + : ThreadContext(std::move(code), actor, maestro) { } @@ -81,31 +82,33 @@ private: class ThreadContextFactory : public ContextFactory { public: ThreadContextFactory(); + ThreadContextFactory(const ThreadContextFactory&) = delete; + ThreadContextFactory& operator=(const ThreadContextFactory&) = delete; ~ThreadContextFactory() override; - ThreadContext* create_context(std::function code, void_pfn_smxprocess_t cleanup_func, - smx_actor_t process) override + ThreadContext* create_context(std::function&& code, actor::ActorImpl* actor) override { bool maestro = not code; - return create_context(std::move(code), cleanup_func, process, maestro); + return create_context(std::move(code), actor, maestro); } void run_all() override; // Optional methods: - ThreadContext* attach(void_pfn_smxprocess_t cleanup_func, smx_actor_t process) override + ThreadContext* attach(actor::ActorImpl* actor) override { - return create_context(std::function(), cleanup_func, process, false); + return create_context(std::function(), actor, false); } - ThreadContext* create_maestro(std::function code, smx_actor_t process) override + ThreadContext* create_maestro(std::function&& code, actor::ActorImpl* actor) override { - return create_context(std::move(code), nullptr, process, true); + return create_context(std::move(code), actor, true); } private: bool parallel_; - ThreadContext* create_context(std::function code, void_pfn_smxprocess_t cleanup_func, smx_actor_t process, - bool maestro); + ThreadContext* create_context(std::function&& code, actor::ActorImpl* actor, bool maestro); }; -}}} // namespace +} // namespace context +} // namespace kernel +} // namespace simgrid #endif