]> AND Private Git Repository - loba.git/blobdiff - synchro.h
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Filx build with SimGrid 3.14.
[loba.git] / synchro.h
index fed9e87518354e452866395813423d47315d3eed..07897e04febe1eea9075db9590c4bf9571dff2dd 100644 (file)
--- a/synchro.h
+++ b/synchro.h
@@ -1,7 +1,8 @@
 #ifndef SYNCHRO_H
 #define SYNCHRO_H
 
-#include <xbt/synchro_core.h>
+#include <xbt/ex.hpp>
+#include <xbt/synchro.h>
 
 class mutex_t {
 public:
@@ -24,14 +25,12 @@ public:
     void signal()               { xbt_cond_signal(cond);            }
     void wait(mutex_t& mutex)   { xbt_cond_wait(cond, mutex.mutex); }
     bool timedwait(mutex_t& mutex, double delay) {
-        xbt_ex_t e;
-        TRY {
+        try {
             xbt_cond_timedwait(cond, mutex.mutex, delay);
         }
-        CATCH (e) {
+        catch (const xbt_ex& e) {
             if (e.category != timeout_error)
-                RETHROW;
-            xbt_ex_free(e);
+                throw;
             mutex.acquire();
             return false;       // got a timeout
         }