X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5de8fe9ad7bfa1bee9e28dd030f6c57ea529ad20..182cc8093e15ba81fa630601a0021dee7979991a:/src/msg/msg_synchro.cpp diff --git a/src/msg/msg_synchro.cpp b/src/msg/msg_synchro.cpp index 827c481489..15c3ef80db 100644 --- a/src/msg/msg_synchro.cpp +++ b/src/msg/msg_synchro.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2014. The SimGrid Team. +/* Copyright (c) 2013-2017. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -6,8 +6,8 @@ #include "xbt/ex.hpp" -#include "msg_private.h" -#include "src/simix/smx_private.h" +#include "msg_private.hpp" +#include "src/simix/smx_private.hpp" #include "xbt/synchro.h" XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_synchro, msg, "Logging specific to MSG (synchro)"); @@ -63,16 +63,16 @@ int MSG_sem_would_block(msg_sem_t sem) { } /*-**** barrier related functions ****-*/ -typedef struct s_msg_bar { +struct s_msg_bar_t { xbt_mutex_t mutex; xbt_cond_t cond; unsigned int arrived_processes; unsigned int expected_processes; -} 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, 1); + msg_bar_t bar = new s_msg_bar_t; bar->expected_processes = count; bar->arrived_processes = 0; bar->mutex = xbt_mutex_init(); @@ -84,14 +84,14 @@ 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 */ int MSG_barrier_wait(msg_bar_t bar) { xbt_mutex_acquire(bar->mutex); bar->arrived_processes++; - XBT_DEBUG("waiting %p %d/%d", bar, bar->arrived_processes, bar->expected_processes); + XBT_DEBUG("waiting %p %u/%u", bar, bar->arrived_processes, bar->expected_processes); if (bar->arrived_processes == bar->expected_processes) { xbt_cond_broadcast(bar->cond); xbt_mutex_release(bar->mutex);