X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6574906fc7ef8966b3140b596df794b8e05cd504..c68caf0f27b0fdde9df0a39857e5a162fc196d85:/src/kernel/context/ContextThread.hpp diff --git a/src/kernel/context/ContextThread.hpp b/src/kernel/context/ContextThread.hpp index cd83102a10..1f9d06e773 100644 --- a/src/kernel/context/ContextThread.hpp +++ b/src/kernel/context/ContextThread.hpp @@ -10,6 +10,7 @@ #include "simgrid/simix.hpp" #include "src/kernel/context/Context.hpp" +#include "src/xbt/OsSemaphore.hpp" #include "xbt/xbt_os_thread.h" namespace simgrid { @@ -32,10 +33,10 @@ public: private: /** A portable thread */ xbt_os_thread_t thread_ = nullptr; - /** Semaphore used to schedule/yield the process */ - xbt_os_sem_t begin_ = nullptr; - /** Semaphore used to schedule/unschedule */ - xbt_os_sem_t end_ = nullptr; + /** Semaphore used to schedule/yield the process (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}; bool is_maestro_; void start(); // match a call to release() @@ -69,7 +70,7 @@ public: static void run_all(); private: - static xbt_os_sem_t thread_sem_; + static xbt::OsSemaphore* thread_sem_; void start_hook() override; void yield_hook() override; @@ -86,7 +87,6 @@ public: return create_context(std::move(code), cleanup_func, process, maestro); } void run_all() override; - ThreadContext* self() override { return static_cast(xbt_os_thread_get_extra_data()); } // Optional methods: ThreadContext* attach(void_pfn_smxprocess_t cleanup_func, smx_actor_t process) override