X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ca82f90e6d610b6bb3b038cd9ee48d378cc8a909..1b06644f45ed96ceb1dfc0eddb0f55d6e0ed2326:/src/s4u/s4u_Barrier.cpp diff --git a/src/s4u/s4u_Barrier.cpp b/src/s4u/s4u_Barrier.cpp index 7289a6ccb6..d03108133f 100644 --- a/src/s4u/s4u_Barrier.cpp +++ b/src/s4u/s4u_Barrier.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2018-2020. 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. */ @@ -17,11 +17,6 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(s4u_barrier, s4u, "S4U barrier"); namespace simgrid { namespace s4u { -Barrier::Barrier(unsigned int expected_processes) - : mutex_(Mutex::create()), cond_(ConditionVariable::create()), expected_actors_(expected_processes) -{ -} - /** @brief Create a new barrier * * See @ref s4u_raii. @@ -79,7 +74,7 @@ sg_bar_t sg_barrier_init(unsigned int count) } /** @brief Initializes a barrier, with count elements */ -void sg_barrier_destroy(sg_bar_t bar) +void sg_barrier_destroy(const_sg_bar_t bar) { delete bar; }