From: schnorr Date: Thu, 1 Apr 2010 14:17:01 +0000 (+0000) Subject: missing HAVE_TRACING ifdef/endif in smx_action.c X-Git-Tag: SVN~318 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/21e348c392c2b7a818d7cd938d35c0bbc3f26922 missing HAVE_TRACING ifdef/endif in smx_action.c git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@7422 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/simix/smx_action.c b/src/simix/smx_action.c index adeea21d09..7984882150 100644 --- a/src/simix/smx_action.c +++ b/src/simix/smx_action.c @@ -50,7 +50,9 @@ smx_action_t SIMIX_action_communicate(smx_host_t sender, /* initialize them */ act->name = xbt_strdup(name); act->source = sender; +#ifdef HAVE_TRACING act->category = NULL; +#endif act->surf_action = surf_workstation_model->extension.workstation.communicate(sender->host, @@ -90,7 +92,9 @@ smx_action_t SIMIX_action_execute(smx_host_t host, const char *name, /* initialize them */ act->source = host; act->name = xbt_strdup(name); +#ifdef HAVE_TRACING act->category = NULL; +#endif /* set communication */ act->surf_action = @@ -135,7 +139,9 @@ smx_action_t SIMIX_action_sleep(smx_host_t host, double duration) /* initialize them */ act->source = host; act->name = xbt_strdup(name); +#ifdef HAVE_TRACING act->category = NULL; +#endif act->surf_action = surf_workstation_model->extension.workstation.sleep(host->host, duration); @@ -357,7 +363,9 @@ smx_action_t SIMIX_action_parallel_execute(char *name, int host_nb, /* initialize them */ act->name = xbt_strdup(name); +#ifdef HAVE_TRACING act->category = NULL; +#endif /* set action */