From 46aad9240a775dd935553ee3baff3e8d59e3a88c Mon Sep 17 00:00:00 2001 From: alegrand Date: Wed, 5 Mar 2008 01:50:44 +0000 Subject: [PATCH] cosmetics git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@5251 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- src/simix/smx_environment.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/simix/smx_environment.c b/src/simix/smx_environment.c index 321e84d8c4..f1ff57960b 100644 --- a/src/simix/smx_environment.c +++ b/src/simix/smx_environment.c @@ -98,7 +98,7 @@ void SIMIX_create_environment(const char *file) surf_cpu_model_description[cpu_id].model_init(file); surf_network_model_description[network_id].model_init(file); - start = xbt_os_time(); + start = xbt_os_time(); parse_platform_file(file); end = xbt_os_time(); DEBUG1("PARSE TIME: %lg", (end-start)); @@ -109,13 +109,12 @@ void SIMIX_create_environment(const char *file) model_init(file); if (!parsed) { - double e ; - double s = xbt_os_time(); + start = xbt_os_time(); parse_platform_file(file); if (surf_workstation_model_description[workstation_id].create_ws != NULL) surf_workstation_model_description[workstation_id].create_ws(); - e = xbt_os_time(); - DEBUG1("PARSE TIME: %lg", (e-s)); + end = xbt_os_time(); + DEBUG1("PARSE TIME: %lg", (end-start)); } _simix_init_status = 2; /* inited; don't change settings now */ -- 2.20.1