X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7fc7124c05e03245515decbf6d54163d5990c2a6..1c776224d750723000d0e3753878e0733e469006:/src/instr/instr_config.c diff --git a/src/instr/instr_config.c b/src/instr/instr_config.c index e09e8d5da7..3b3168724f 100644 --- a/src/instr/instr_config.c +++ b/src/instr/instr_config.c @@ -28,7 +28,7 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_config, instr, "Configuration"); static int trace_configured = 0; static int trace_active = 0; -extern xbt_dict_t created_categories; //declared in instr_interface.c +xbt_dict_t created_categories; //declared in instr_interface.c int TRACE_start() { @@ -83,29 +83,12 @@ int TRACE_start() // pajeDefineContainerType("TASK", "HOST", "TASK"); // pajeDefineStateType("category", "TASK", "category"); // pajeDefineStateType("presence", "TASK", "presence"); -// } - - /* type hierarchy for - * --cfg=tracing/smpi - * --cfg=tracing/smpi/group - */ -// FIXME -// if (TRACE_smpi_is_enabled()) { -// if (TRACE_smpi_is_grouped()){ -// pajeDefineContainerType("MPI_PROCESS", "HOST", "MPI_PROCESS"); -// }else{ -// pajeDefineContainerType("MPI_PROCESS", "PLATFORM", "MPI_PROCESS"); -// } -// pajeDefineStateType("MPI_STATE", "MPI_PROCESS", "MPI_STATE"); -// pajeDefineLinkType("MPI_LINK", "0", "MPI_PROCESS", "MPI_PROCESS", -// "MPI_LINK"); // } } /* other trace initialization */ created_categories = xbt_dict_new(); TRACE_msg_task_alloc(); TRACE_surf_alloc(); - TRACE_msg_process_alloc(); TRACE_smpi_alloc(); return 0; }