]> AND Public Git Repository - simgrid.git/blobdiff - src/simix/smx_global.cpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix the fix of the fix of testsome.
[simgrid.git] / src / simix / smx_global.cpp
index 25be94c5cbe649b3211f8e3c2a38024c1169f9e2..007bb0aebb4cd195f3451bd15b02dbfdea704d99 100644 (file)
@@ -364,11 +364,7 @@ static bool SIMIX_execute_timers()
     // FIXME: make the timers being real callbacks (i.e. provide dispatchers that read and expand the args)
     smx_timer_t timer = simgrid::simix::simix_timers.top().second;
     simgrid::simix::simix_timers.pop();
-    try {
-      timer->callback();
-    } catch (...) {
-      xbt_die("Exception thrown out of timer callback");
-    }
+    timer->callback();
     delete timer;
   }
   return result;