X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7f4f03348bd07609e258eb3b545bdafc2c881847..61ab70f5ec5869d57fb0712101280e304d38dcbc:/src/simix/smx_environment.cpp diff --git a/src/simix/smx_environment.cpp b/src/simix/smx_environment.cpp index 9b4c6db82b..eb362756b0 100644 --- a/src/simix/smx_environment.cpp +++ b/src/simix/smx_environment.cpp @@ -5,11 +5,11 @@ * under the terms of the license (GNU LGPL) which comes with this package. */ #include "smx_private.h" +#include #include "xbt/sysdep.h" #include "xbt/log.h" #include "xbt/xbt_os_time.h" #include "xbt/config.h" -#include "surf/surfxml_parse.h" XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_environment, simix, "Logging specific to SIMIX (environment)"); @@ -36,11 +36,15 @@ void SIMIX_create_environment(const char *file) 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 (xbt_ex& e) { + xbt_die("Error while loading %s: %s", file, e.what()); + } if(XBT_LOG_ISENABLED(simix_environment, xbt_log_priority_debug)) end = xbt_os_time(); XBT_DEBUG("PARSE TIME: %g", (end - start)); - } void SIMIX_post_create_environment(void)