From: schnorr Date: Wed, 15 Dec 2010 14:35:49 +0000 (+0000) Subject: [trace] do not xbt_die if gtnets is traced X-Git-Tag: v3.6_beta2~673 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/b857f66adac2e677a8a2642afe500e9a5f19e474 [trace] do not xbt_die if gtnets is traced todo: - gtnets network model currently is not working with the simulation tracing git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@9250 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/instr/instr_surf.c b/src/instr/instr_surf.c index cdec2f0e83..4cff2e8742 100644 --- a/src/instr/instr_surf.c +++ b/src/instr/instr_surf.c @@ -64,22 +64,20 @@ void TRACE_surf_link_set_latency(double date, const char *resource, double laten /* to trace gtnets */ void TRACE_surf_gtnets_communicate(void *action, int src, int dst) { - xbt_die ("gtnets tracing is to be udpated"); } int TRACE_surf_gtnets_get_src(void *action) { - xbt_die ("gtnets tracing is to be udpated"); + return -1; } int TRACE_surf_gtnets_get_dst(void *action) { - xbt_die ("gtnets tracing is to be udpated"); + return -1; } void TRACE_surf_gtnets_destroy(void *action) { - xbt_die ("gtnets tracing is to be udpated"); } void TRACE_surf_action(surf_action_t surf_action, const char *category)