X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/892e136b3be07e45110a5a2db2889470386e954a..dca78d0426c59e786f1633ef14b3c8b99ab7e9e0:/src/simix/smx_environment.cpp diff --git a/src/simix/smx_environment.cpp b/src/simix/smx_environment.cpp index 372f25520a..d0c7d0228c 100644 --- a/src/simix/smx_environment.cpp +++ b/src/simix/smx_environment.cpp @@ -5,13 +5,13 @@ * 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" -XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_environment, simix, - "Logging specific to SIMIX (environment)"); +XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_environment, simix, "Logging specific to SIMIX (environment)"); /********************************* SIMIX **************************************/ @@ -32,7 +32,8 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_environment, simix, */ void SIMIX_create_environment(const char *file) { - double start = 0, end = 0; + double start = 0; + double end = 0; if(XBT_LOG_ISENABLED(simix_environment, xbt_log_priority_debug)) start = xbt_os_time(); try { @@ -46,7 +47,7 @@ void SIMIX_create_environment(const char *file) XBT_DEBUG("PARSE TIME: %g", (end - start)); } -void SIMIX_post_create_environment(void) +void SIMIX_post_create_environment() { surf_presolve(); }