X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ff7b0485ecdc2ab695caf5a58d9cb693f3dd3c58..65e338fbfd769d49b29242bfe56cde18c03b6074:/src/instr/smx_instr.c diff --git a/src/instr/smx_instr.c b/src/instr/smx_instr.c index 3d2870a1a7..229b15bf68 100644 --- a/src/instr/smx_instr.c +++ b/src/instr/smx_instr.c @@ -21,6 +21,7 @@ void TRACE_smx_action_execute (smx_action_t act) act->category = xbt_new (char, strlen (category)+1); strncpy (act->category, category, strlen(category)+1); } + __TRACE_surf_resource_utilization_start (act); } void TRACE_smx_action_communicate (smx_action_t act, smx_process_t proc) @@ -33,6 +34,7 @@ void TRACE_smx_action_communicate (smx_action_t act, smx_process_t proc) if (category){ act->category = xbt_strdup (category); } + __TRACE_surf_resource_utilization_start (act); } void TRACE_smx_action_destroy (smx_action_t act) @@ -42,6 +44,7 @@ void TRACE_smx_action_destroy (smx_action_t act) if (act->category){ xbt_free (act->category); } + __TRACE_surf_resource_utilization_end (act); } #endif