X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ecd5f7562caf1d443bf22788fa5f4fac408776ec..d535c50c617ba838b99de4bd251a6ac076774d00:/src/kernel/context/ContextThread.hpp diff --git a/src/kernel/context/ContextThread.hpp b/src/kernel/context/ContextThread.hpp index 36104b3a36..48a9d1aa11 100644 --- a/src/kernel/context/ContextThread.hpp +++ b/src/kernel/context/ContextThread.hpp @@ -1,5 +1,4 @@ -/* Copyright (c) 2009-2017. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2009-2018. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -9,8 +8,9 @@ #ifndef SIMGRID_SIMIX_THREAD_CONTEXT_HPP #define SIMGRID_SIMIX_THREAD_CONTEXT_HPP -#include - +#include "simgrid/simix.hpp" +#include "src/kernel/context/Context.hpp" +#include "xbt/xbt_os_thread.h" namespace simgrid { namespace kernel { @@ -25,7 +25,7 @@ public: void attach_start() override; void attach_stop() override; - bool isMaestro() const { return is_maestro_; } + bool is_maestro() const { return is_maestro_; } void release(); // unblock context's start() void wait(); // wait for context's yield() @@ -40,8 +40,8 @@ private: void start(); // match a call to release() void yield(); // match a call to yield() - virtual void start_hook() { /* empty placeholder, called after start() */} - virtual void yield_hook() { /* empty placeholder, called before 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 */} static void* wrapper(void *param); };