X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/bdfe4f8674f98efbf2d67ad854ef83a1d5f855ed..7cad4f0d54aafeabb7ee95007fc370514c4923a9:/src/surf/instr_surf.c diff --git a/src/surf/instr_surf.c b/src/surf/instr_surf.c index e9570dd976..9a2764ae00 100644 --- a/src/surf/instr_surf.c +++ b/src/surf/instr_surf.c @@ -1,12 +1,11 @@ -/* Copyright (c) 2010, 2012. The SimGrid Team. +/* Copyright (c) 2010, 2012-2014. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it - * under the terms of the license (GNU LGPL) which comes with this package. */ + * under the terms of the license (GNU LGPL) which comes with this package. */ #include "instr/instr_private.h" #include "surf/surf_private.h" -#include "surf/network_gtnets_private.h" #ifdef HAVE_TRACING @@ -43,9 +42,9 @@ void TRACE_surf_link_set_bandwidth(double date, const char *resource, double ban /* to trace gtnets */ void TRACE_surf_gtnets_communicate(void *action, void *src, void *dst) { - surf_action_network_GTNETS_t gtnets_action = (surf_action_network_GTNETS_t)action; + /*FIXME:surf_action_network_GTNETS_t gtnets_action = (surf_action_network_GTNETS_t)action; gtnets_action->src = src; - gtnets_action->dst = dst; + gtnets_action->dst = dst;*/ } void TRACE_surf_action(surf_action_t surf_action, const char *category) @@ -57,6 +56,6 @@ void TRACE_surf_action(surf_action_t surf_action, const char *category) if (!category) return; - surf_action->category = xbt_strdup(category); + surf_action_set_category(surf_action, category); } #endif /* HAVE_TRACING */