From: Lucas Schnorr Date: Tue, 23 Oct 2012 19:57:46 +0000 (+0200) Subject: [trace] link value here should indicate resource topology X-Git-Tag: v3_9_rc1~91^2~218^2~11 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/9691160ae7e3c986ca9af58f7dce00a7ee62a50f?ds=sidebyside [trace] link value here should indicate resource topology --- diff --git a/src/instr/instr_routing.c b/src/instr/instr_routing.c index 0dbd2c448e..256eb7c3dd 100644 --- a/src/instr/instr_routing.c +++ b/src/instr/instr_routing.c @@ -119,8 +119,8 @@ static void linkContainers (container_t src, container_t dst, xbt_dict_t filter) static long long counter = 0; char key[INSTR_DEFAULT_STR_SIZE]; snprintf (key, INSTR_DEFAULT_STR_SIZE, "%lld", counter++); - new_pajeStartLink(SIMIX_get_clock(), father, link_type, src, "G", key); - new_pajeEndLink(SIMIX_get_clock(), father, link_type, dst, "G", key); + new_pajeStartLink(SIMIX_get_clock(), father, link_type, src, "topology", key); + new_pajeEndLink(SIMIX_get_clock(), father, link_type, dst, "topology", key); XBT_DEBUG (" linkContainers %s <-> %s", src->name, dst->name); }