X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5089a0a98b27f5eeee62321dff4f025f1648f025..c687db88634134fbe8109bbbcbf09130928bec27:/include/simgrid/s4u/Barrier.hpp diff --git a/include/simgrid/s4u/Barrier.hpp b/include/simgrid/s4u/Barrier.hpp index db8e05e830..f5d3fa57cf 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-2021. 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. */ @@ -20,8 +20,8 @@ namespace s4u { class XBT_PUBLIC Barrier { private: - MutexPtr mutex_; - ConditionVariablePtr cond_; + MutexPtr mutex_ = Mutex::create(); + ConditionVariablePtr cond_ = ConditionVariable::create(); unsigned int expected_actors_; unsigned int arrived_actors_ = 0; @@ -30,9 +30,8 @@ private: public: /** Creates a barrier for the given amount of actors */ - explicit Barrier(unsigned int count); + explicit Barrier(unsigned int expected_actors) : expected_actors_(expected_actors) {} #ifndef DOXYGEN - ~Barrier() = default; Barrier(Barrier const&) = delete; Barrier& operator=(Barrier const&) = delete; #endif