X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cf108868b4eeed4d0d9d343bc68557d7814e18c0..e7474e602031399bbebb1105d683564d1fb2f1c0:/src/simix/smx_environment.cpp diff --git a/src/simix/smx_environment.cpp b/src/simix/smx_environment.cpp index 279e6eae77..3d82fd9c56 100644 --- a/src/simix/smx_environment.cpp +++ b/src/simix/smx_environment.cpp @@ -32,10 +32,15 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_environment, simix, */ void SIMIX_create_environment(const char *file) { + xbt_ex_t e; double start = 0, end = 0; if(XBT_LOG_ISENABLED(simix_environment, xbt_log_priority_debug)) start = xbt_os_time(); - parse_platform_file(file); + TRY { + parse_platform_file(file); + } CATCH (e) { + xbt_die("Error while loading %s: %s", file, e.msg); + } if(XBT_LOG_ISENABLED(simix_environment, xbt_log_priority_debug)) end = xbt_os_time(); XBT_DEBUG("PARSE TIME: %g", (end - start));