From: schnorr Date: Mon, 13 Dec 2010 16:44:32 +0000 (+0000) Subject: [trace] graph configuration file for triva no longer needs categories to be in p... X-Git-Tag: v3.6_beta2~758 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/016cd0085fff6c062767f0f1f03b98e3202a14f7?hp=27522f54798d48ca54ec41a4d203f650cbfacdfd [trace] graph configuration file for triva no longer needs categories to be in p$CAT (hosts) or b$CAT (links), uses $CAT (for both) details: - squeezing what the paje file format can give us git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@9165 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/instr/instr_config.c b/src/instr/instr_config.c index 6b8eaf67b7..851ca3d7eb 100644 --- a/src/instr/instr_config.c +++ b/src/instr/instr_config.c @@ -478,7 +478,7 @@ void TRACE_generate_triva_cat_conf (void) " size = power;\n" " values = ("); xbt_dict_foreach(created_categories,cursor,key,data) { - fprintf(file, "p%s, ",key); + fprintf(file, "%s, ",key); } fprintf (file, ");\n" @@ -494,7 +494,7 @@ void TRACE_generate_triva_cat_conf (void) " size = bandwidth;\n" " values = ("); xbt_dict_foreach(created_categories,cursor,key,data) { - fprintf(file, "b%s, ",key); + fprintf(file, "%s, ",key); } fprintf (file, ");\n"