X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9caefc9fd82f338d9f8b9eede38a171aaff5f4bc..09672882edafb2d47c31b4c3e45543cc5ede5827:/src/s4u/s4u_Exec.cpp?ds=sidebyside diff --git a/src/s4u/s4u_Exec.cpp b/src/s4u/s4u_Exec.cpp index b16393c97f..7048f1bea5 100644 --- a/src/s4u/s4u_Exec.cpp +++ b/src/s4u/s4u_Exec.cpp @@ -3,6 +3,7 @@ /* 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 "simgrid/Exception.hpp" #include "simgrid/exec.h" #include "simgrid/s4u/Actor.hpp" #include "simgrid/s4u/Exec.hpp" @@ -234,6 +235,11 @@ void sg_exec_wait(sg_exec_t exec) void sg_exec_wait_for(sg_exec_t exec, double timeout) { - exec->wait_for(timeout); + try { + exec->wait_for(timeout); + } catch (const simgrid::TimeoutException&) { + // FIXME: add better exception handling + XBT_DEBUG("Exec reached its timeout"); + } exec->unref(); }