X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8639295f6bedeb3c9e1a60a1056925c4fe892fa4..431765cb8198579ac316fa0875b5c8988a501675:/src/simix/smx_host.cpp diff --git a/src/simix/smx_host.cpp b/src/simix/smx_host.cpp index 268d3c7757..3fb82a4878 100644 --- a/src/simix/smx_host.cpp +++ b/src/simix/smx_host.cpp @@ -32,9 +32,8 @@ namespace simgrid { std::string msg = std::string("Shutting down host, but it's not empty:"); smx_actor_t process = nullptr; - xbt_swag_foreach(process, process_list) { - msg = msg + "\n\t" + process->name.c_str(); - } + xbt_swag_foreach(process, process_list) msg = msg + "\n\t" + process->name.c_str(); + SIMIX_display_process_status(); THROWF(arg_error, 0, "%s", msg.c_str()); }