X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f783ed4680c6862a1b7543237e89d1221334bae0..272ccad1b68b6d9c17069f3c934886925bb15b5d:/src/instr/instr_surf.c diff --git a/src/instr/instr_surf.c b/src/instr/instr_surf.c index 73926c9050..1de381c130 100644 --- a/src/instr/instr_surf.c +++ b/src/instr/instr_surf.c @@ -27,8 +27,8 @@ void TRACE_surf_host_set_power(double date, const char *resource, double power) if (!TRACE_is_enabled()) return; - container_t container = getContainerByName(resource); - type_t type = getVariableType("power", NULL, container->type); + container_t container = PJ_container_get(resource); + type_t type = PJ_type_get ("power", container->type); new_pajeSetVariable(date, container, type, power); } @@ -37,8 +37,8 @@ void TRACE_surf_link_set_bandwidth(double date, const char *resource, double ban if (!TRACE_is_enabled()) return; - container_t container = getContainerByName(resource); - type_t type = getVariableType("bandwidth", NULL, container->type); + container_t container = PJ_container_get(resource); + type_t type = PJ_type_get ("bandwidth", container->type); new_pajeSetVariable(date, container, type, bandwidth); } @@ -48,24 +48,17 @@ void TRACE_surf_link_set_latency(double date, const char *resource, double laten if (!TRACE_is_enabled()) return; - container_t container = getContainerByName(resource); - type_t type = getVariableType("latency", NULL, container->type); + container_t container = PJ_container_get(resource); + type_t type = PJ_type_get ("latency", container->type); new_pajeSetVariable(date, container, type, latency); } /* to trace gtnets */ -void TRACE_surf_gtnets_communicate(void *action, const char *src, const char *dst) +void TRACE_surf_gtnets_communicate(void *action, void *src, void *dst) { surf_action_network_GTNETS_t gtnets_action = (surf_action_network_GTNETS_t)action; - gtnets_action->src_name = xbt_strdup (src); - gtnets_action->dst_name = xbt_strdup (dst); -} - -void TRACE_surf_gtnets_destroy(void *action) -{ - surf_action_network_GTNETS_t gtnets_action = (surf_action_network_GTNETS_t)action; - xbt_free (gtnets_action->src_name); - xbt_free (gtnets_action->dst_name); + gtnets_action->src = src; + gtnets_action->dst = dst; } void TRACE_surf_action(surf_action_t surf_action, const char *category)