X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d43e84e981024537b56f15f7dcc937b0202cad2b..71d215251ec3eeb3e4192c0e14ec6dea8fd97007:/examples/s4u/platform-failures/s4u-platform-failures.cpp diff --git a/examples/s4u/platform-failures/s4u-platform-failures.cpp b/examples/s4u/platform-failures/s4u-platform-failures.cpp index 8b54502938..22c4d24280 100644 --- a/examples/s4u/platform-failures/s4u-platform-failures.cpp +++ b/examples/s4u/platform-failures/s4u-platform-failures.cpp @@ -4,7 +4,6 @@ * under the terms of the license (GNU LGPL) which comes with this package. */ #include "simgrid/s4u.hpp" -#include "xbt/ex.hpp" #include "xbt/str.h" XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this s4u example"); @@ -91,6 +90,7 @@ static int worker(int argc, char* argv[]) xbt_assert(payload != nullptr, "mailbox->get() failed"); if (comp_size < 0) { /* - Exit when -1.0 is received */ XBT_INFO("I'm done. See you!"); + delete payload; break; } /* - Otherwise, process the task */ @@ -98,19 +98,20 @@ static int worker(int argc, char* argv[]) XBT_INFO("Start execution..."); simgrid::s4u::this_actor::execute(comp_size); XBT_INFO("Execution complete."); + delete payload; } catch (xbt_ex& e) { if (e.category == host_error) { XBT_INFO("Gloups. The cpu on which I'm running just turned off!. See you!"); + delete payload; return -1; } else xbt_die("Unexpected behavior"); } - - delete payload; } catch (xbt_ex& e) { switch (e.category) { case host_error: XBT_INFO("Gloups. The cpu on which I'm running just turned off!. See you!"); + delete payload; return -1; case network_error: XBT_INFO("Mmh. Something went wrong. Nevermind. Let's keep going!");