X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dccf1b41e9c7b5a696f01abceaa2779fe65f154f..d20f024dba9ff1e9c8822237caaf963b9e913889:/src/msg/msg_synchro.cpp diff --git a/src/msg/msg_synchro.cpp b/src/msg/msg_synchro.cpp index 4090fb3911..703fbee4a3 100644 --- a/src/msg/msg_synchro.cpp +++ b/src/msg/msg_synchro.cpp @@ -1,15 +1,14 @@ -/* 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 * under the terms of the license (GNU LGPL) which comes with this package. */ -#include +#include "xbt/ex.hpp" -#include "msg_private.h" -#include "xbt/log.h" +#include "msg_private.hpp" +#include "src/simix/smx_private.hpp" #include "xbt/synchro.h" -#include "xbt/sysdep.h" XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_synchro, msg, "Logging specific to MSG (synchro)"); @@ -20,7 +19,7 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_synchro, msg, "Logging specific to MSG (sync /** @brief creates a semaphore object of the given initial capacity */ msg_sem_t MSG_sem_init(int initial_value) { - return simcall_sem_init(initial_value); + return simgrid::simix::kernelImmediate([initial_value] { return SIMIX_sem_init(initial_value); }); } /** @brief locks on a semaphore object */ @@ -43,11 +42,11 @@ msg_error_t MSG_sem_acquire_timeout(msg_sem_t sem, double timeout) { /** @brief releases the semaphore object */ void MSG_sem_release(msg_sem_t sem) { - simcall_sem_release(sem); + simgrid::simix::kernelImmediate([sem] { SIMIX_sem_release(sem); }); } int MSG_sem_get_capacity(msg_sem_t sem) { - return simcall_sem_get_capacity(sem); + return simgrid::simix::kernelImmediate([sem] { return SIMIX_sem_get_capacity(sem); }); } void MSG_sem_destroy(msg_sem_t sem) { @@ -60,7 +59,7 @@ void MSG_sem_destroy(msg_sem_t sem) { * But that's a classical semaphore issue, and SimGrid's semaphore are not different to usual ones here. */ int MSG_sem_would_block(msg_sem_t sem) { - return simcall_sem_would_block(sem); + return simgrid::simix::kernelImmediate([sem] { return SIMIX_sem_would_block(sem); }); } /*-**** barrier related functions ****-*/ @@ -92,6 +91,7 @@ void MSG_barrier_destroy(msg_bar_t bar) { int MSG_barrier_wait(msg_bar_t bar) { xbt_mutex_acquire(bar->mutex); bar->arrived_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);