X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/978ba263685f9f76f4721930decccebbbf776816..5d6ee66c4a278f168be501318e781c0853085bdc:/src/s4u/s4u_Barrier.cpp diff --git a/src/s4u/s4u_Barrier.cpp b/src/s4u/s4u_Barrier.cpp index be8bb6e6e1..e4a8214ab0 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-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. */ @@ -12,16 +12,11 @@ #include "simgrid/simix.h" #include "xbt/log.hpp" -XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_barrier, "S4U barrier"); +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; }