X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/09c5ef58994d928bc9f099f711600ae82c760cdd..8efeb3a6aa2c201800a3ba19416ea9728af3bff6:/src/msg/msg_synchro.cpp diff --git a/src/msg/msg_synchro.cpp b/src/msg/msg_synchro.cpp index 15c3ef80db..c2895a3417 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)"); @@ -29,15 +29,7 @@ void MSG_sem_acquire(msg_sem_t sem) { /** @brief locks on a semaphore object up until the provided timeout expires */ msg_error_t MSG_sem_acquire_timeout(msg_sem_t sem, double timeout) { - msg_error_t res = MSG_OK; - try { - simcall_sem_acquire_timeout(sem,timeout); - } catch(xbt_ex& e) { - if (e.category == timeout_error) - return MSG_TIMEOUT; - throw; - } - return res; + return simcall_sem_acquire_timeout(sem, timeout) ? MSG_TIMEOUT : MSG_OK; } /** @brief releases the semaphore object */