X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7207080bb744f50a6d8c418f25d82ad69e9b4f44..c8ebdd0a29f781646e66cd7a791957205d617dbe:/src/simix/smx_global.cpp diff --git a/src/simix/smx_global.cpp b/src/simix/smx_global.cpp index 25be94c5cb..007bb0aebb 100644 --- a/src/simix/smx_global.cpp +++ b/src/simix/smx_global.cpp @@ -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;