X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7e42dd535dfc0d68de20fba4b9fc5e480b56c74b..4d5c6aed22b8ae1c8a73cd04d8ab800322d177bf:/src/kernel/context/ContextUnix.hpp diff --git a/src/kernel/context/ContextUnix.hpp b/src/kernel/context/ContextUnix.hpp index 71f8999249..e295305be0 100644 --- a/src/kernel/context/ContextUnix.hpp +++ b/src/kernel/context/ContextUnix.hpp @@ -17,27 +17,22 @@ #include #include -#include "Context.hpp" #include "src/internal_config.h" -#include "src/simix/smx_private.hpp" +#include "src/kernel/context/ContextSwapped.hpp" namespace simgrid { namespace kernel { namespace context { -class UContext : public Context { +class UContext : public SwappedContext { public: UContext(std::function code, void_pfn_smxprocess_t cleanup_func, smx_actor_t process); ~UContext() override; void stop() override; - virtual void resume() = 0; - static void swap(UContext* from, UContext* to); - static UContext* get_maestro() { return maestro_context_; } - static void set_maestro(UContext* maestro) { maestro_context_ = maestro; } + void swap_into(SwappedContext* to) override; private: - static UContext* maestro_context_; void* stack_ = nullptr; /* the thread stack */ ucontext_t uc_; /* the ucontext that executes the code */ @@ -52,21 +47,6 @@ private: static void make_ctx(ucontext_t* ucp, void (*func)(int, int), UContext* arg); }; -class SerialUContext : public UContext { -public: - SerialUContext(std::function code, void_pfn_smxprocess_t cleanup_func, smx_actor_t process) - : UContext(std::move(code), cleanup_func, process) - { - } - void suspend() override; - void resume() override; - - static void run_all(); - -private: - static unsigned long process_index_; -}; - class ParallelUContext : public UContext { public: ParallelUContext(std::function code, void_pfn_smxprocess_t cleanup_func, smx_actor_t process)