X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6afb475701f9a542024daac748fcb5ddff7277b4..ab5814bd4ea6117ecf9ac2df328333e89eb45f5f:/src/kernel/context/ContextThread.hpp diff --git a/src/kernel/context/ContextThread.hpp b/src/kernel/context/ContextThread.hpp index 6602a1f2ec..cb578d7e63 100644 --- a/src/kernel/context/ContextThread.hpp +++ b/src/kernel/context/ContextThread.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2009-2022. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2009-2023. 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. */ @@ -14,9 +14,7 @@ #include -namespace simgrid { -namespace kernel { -namespace context { +namespace simgrid::kernel::context { class XBT_PUBLIC ThreadContext : public AttachContext { public: @@ -41,7 +39,7 @@ private: void start(); // match a call to release() void yield(); // match a call to yield() - virtual void start_hook() { /* empty placeholder, called after start(). Used in parallel mode and Java */} + virtual void start_hook() { /* empty placeholder, called after start(). Used in parallel mode */} virtual void yield_hook() { /* empty placeholder, called before yield(). Used in parallel mode */} static void wrapper(ThreadContext* context); @@ -101,8 +99,6 @@ public: private: ThreadContext* create_context(std::function&& code, actor::ActorImpl* actor, bool maestro); }; -} // namespace context -} // namespace kernel -} // namespace simgrid +} // namespace simgrid::kernel::context #endif