X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/640e6f6494f5e1151f6436aea0e0c515da2c144b..c3aba869402fd6e57bd6c70dde801e6995037d99:/include/simgrid/s4u/Barrier.hpp diff --git a/include/simgrid/s4u/Barrier.hpp b/include/simgrid/s4u/Barrier.hpp index 92ece5a673..547f5d82d4 100644 --- a/include/simgrid/s4u/Barrier.hpp +++ b/include/simgrid/s4u/Barrier.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2018-2022. 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. */ @@ -6,9 +6,10 @@ #ifndef SIMGRID_S4U_BARRIER_HPP #define SIMGRID_S4U_BARRIER_HPP +#include +#include #include #include -#include #include #include @@ -18,29 +19,29 @@ namespace simgrid { namespace s4u { class XBT_PUBLIC Barrier { -private: - MutexPtr mutex_; - ConditionVariablePtr cond_; - unsigned int expected_processes_; - unsigned int arrived_processes_ = 0; + kernel::activity::BarrierImpl* pimpl_; + friend kernel::activity::BarrierImpl; - /* refcounting */ - std::atomic_int_fast32_t refcount_{0}; + explicit Barrier(kernel::activity::BarrierImpl* pimpl) : pimpl_(pimpl) {} public: - explicit Barrier(unsigned int count); - ~Barrier() = default; +#ifndef DOXYGEN Barrier(Barrier const&) = delete; Barrier& operator=(Barrier const&) = delete; +#endif - /** Constructs a new barrier */ - static BarrierPtr create(unsigned int expected_processes); - + /** 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(); +#ifndef DOXYGEN /* refcounting */ friend XBT_PUBLIC void intrusive_ptr_add_ref(Barrier* barrier); friend XBT_PUBLIC void intrusive_ptr_release(Barrier* barrier); +#endif }; } // namespace s4u } // namespace simgrid