X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c3aba869402fd6e57bd6c70dde801e6995037d99..40ee10e13b61bfb28374d96ade010a262b5abd44:/include/simgrid/s4u/Barrier.hpp diff --git a/include/simgrid/s4u/Barrier.hpp b/include/simgrid/s4u/Barrier.hpp index 547f5d82d4..2d6db86085 100644 --- a/include/simgrid/s4u/Barrier.hpp +++ b/include/simgrid/s4u/Barrier.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2022. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2018-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. */ @@ -15,8 +15,7 @@ #include #include -namespace simgrid { -namespace s4u { +namespace simgrid::s4u { class XBT_PUBLIC Barrier { kernel::activity::BarrierImpl* pimpl_; @@ -30,12 +29,12 @@ public: Barrier& operator=(Barrier const&) = delete; #endif - /** Creates a barrier for the given amount of actors */ + /** \static Creates a barrier for the given amount of actors */ static BarrierPtr create(unsigned int expected_actors); /** Blocks into the barrier. Every waiting actors will be unlocked once the expected amount of actors reaches the barrier */ int wait(); /** Returns some debug information about the barrier */ - std::string to_string(); + std::string to_string() const; #ifndef DOXYGEN /* refcounting */ @@ -43,7 +42,6 @@ public: friend XBT_PUBLIC void intrusive_ptr_release(Barrier* barrier); #endif }; -} // namespace s4u -} // namespace simgrid +} // namespace simgrid::s4u #endif