Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Cosmetic rename.
[simgrid.git] / src / kernel / context / ContextBoost.cpp
index e5b557f..256f677 100644 (file)
@@ -116,8 +116,9 @@ void BoostContext::wrapper(BoostContext::arg_type arg)
     (*context)();
   } catch (StopRequest const&) {
     XBT_DEBUG("Caught a StopRequest");
-  } catch (simgrid::HostFailureException const&) {
-    XBT_DEBUG("Caught an HostFailureException");
+  } catch (simgrid::Exception const& e) {
+    XBT_INFO("Actor killed by an uncatched exception %s", simgrid::xbt::demangle(typeid(e).name()).get());
+    throw;
   }
   context->Context::stop();
   ASAN_ONLY(context->asan_stop_ = true);