X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d656f9465e7b1c36319f86eeafdcec58fe9551a4..37a21f07a441cb2c37ebf76aa73702eb3a5b9972:/src/msg/msg_synchro.cpp diff --git a/src/msg/msg_synchro.cpp b/src/msg/msg_synchro.cpp index b475b9dad7..a1e4886c4d 100644 --- a/src/msg/msg_synchro.cpp +++ b/src/msg/msg_synchro.cpp @@ -1,5 +1,4 @@ -/* Copyright (c) 2013-2017. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2013-2018. 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. */ @@ -8,6 +7,7 @@ #include "msg_private.hpp" #include "src/simix/smx_private.hpp" +#include "src/simix/smx_synchro_private.hpp" #include "xbt/synchro.h" XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_synchro, msg, "Logging specific to MSG (synchro)"); @@ -72,7 +72,7 @@ struct s_msg_bar_t { /** @brief Initializes a barrier, with count elements */ msg_bar_t MSG_barrier_init(unsigned int count) { - msg_bar_t bar = xbt_new0(s_msg_bar_t, 1); + msg_bar_t bar = new s_msg_bar_t; bar->expected_processes = count; bar->arrived_processes = 0; bar->mutex = xbt_mutex_init(); @@ -84,7 +84,7 @@ msg_bar_t MSG_barrier_init(unsigned int count) { void MSG_barrier_destroy(msg_bar_t bar) { xbt_mutex_destroy(bar->mutex); xbt_cond_destroy(bar->cond); - xbt_free(bar); + delete bar; } /** @brief Performs a barrier already initialized */