X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cd5258031316ffdc659d604d8f02c8ac8277aada..3580b0137eab12ca216d9847823c86918b10dd53:/src/kernel/context/ContextThread.hpp diff --git a/src/kernel/context/ContextThread.hpp b/src/kernel/context/ContextThread.hpp index ac271f93de..a61a9f95c4 100644 --- a/src/kernel/context/ContextThread.hpp +++ b/src/kernel/context/ContextThread.hpp @@ -24,7 +24,6 @@ public: ThreadContext(const ThreadContext&) = delete; ThreadContext& operator=(const ThreadContext&) = delete; ~ThreadContext() override; - XBT_ATTRIB_NORETURN void stop() override; void suspend() override; void attach_start() override; void attach_stop() override; @@ -44,7 +43,6 @@ 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(ThreadContext* context); };