From: schnorr Date: Wed, 29 Dec 2010 11:38:04 +0000 (+0000) Subject: [trace] cosmetics X-Git-Tag: v3.6_beta2~594 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/5dd4f0820dc1b968aac1bd7213ab91bdb1107189 [trace] cosmetics git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@9332 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/surf/cpu_im.c b/src/surf/cpu_im.c index e2680c1184..fe34934412 100644 --- a/src/surf/cpu_im.c +++ b/src/surf/cpu_im.c @@ -328,18 +328,15 @@ static void cpu_im_update_actions_state(double now, double delta) GENERIC_ACTION(action).finish = surf_get_clock(); /* set the remains to 0 due to precision problems when updating the remaining amount */ #ifdef HAVE_TRACING - TRACE_surf_host_set_utilization(((cpu_Cas01_im_t) - (action->cpu))->generic_resource.name, - action-> - generic_lmm_action.generic_action.data, - (surf_action_t) action, - lmm_variable_getvalue - (GENERIC_LMM_ACTION(action).variable), - ((cpu_Cas01_im_t) - (action->cpu))->last_update, - now - - ((cpu_Cas01_im_t) - (action->cpu))->last_update); + { + cpu_Cas01_im_t cpu = ((cpu_Cas01_im_t)(action->cpu)); + TRACE_surf_host_set_utilization(cpu->generic_resource.name, + action->generic_lmm_action.generic_action.data, + (surf_action_t) action, + lmm_variable_getvalue (GENERIC_LMM_ACTION(action).variable), + cpu->last_update, + now - cpu->last_update); + } #endif GENERIC_ACTION(action).remains = 0; cpu_im_cpu_action_state_set((surf_action_t) action, SURF_ACTION_DONE);