X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2f9ed48f48e99fdbb007117690be4583b05ee903..514576f5a568bd452cb00faf460f191a07773d52:/src/kernel/context/ContextThread.hpp diff --git a/src/kernel/context/ContextThread.hpp b/src/kernel/context/ContextThread.hpp index 70f7adbaa0..5509482788 100644 --- a/src/kernel/context/ContextThread.hpp +++ b/src/kernel/context/ContextThread.hpp @@ -29,7 +29,6 @@ public: void attach_start() override; void attach_stop() override; - bool is_maestro() const { return is_maestro_; } void release(); // unblock context's start() void wait(); // wait for context's yield() @@ -40,7 +39,6 @@ private: 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() void yield(); // match a call to yield()