X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1c776224d750723000d0e3753878e0733e469006..5c5188a9c5ba63ce034b32a51c941f195de8849f:/src/instr/instr_routing.c diff --git a/src/instr/instr_routing.c b/src/instr/instr_routing.c index c65dabf137..06c2898d25 100644 --- a/src/instr/instr_routing.c +++ b/src/instr/instr_routing.c @@ -213,6 +213,7 @@ container_t newContainer (const char *name, e_container_types kind, container_t case INSTR_ROUTER: new->type = getContainerType ("ROUTER", new->father->type); break; case INSTR_SMPI: new->type = getContainerType ("MPI", new->father->type); break; case INSTR_MSG_PROCESS: new->type = getContainerType ("MSG_PROCESS", new->father->type); break; + case INSTR_MSG_TASK: new->type = getContainerType ("MSG_TASK", new->father->type); break; default: xbt_die ("Congratulations, you have found a bug on newContainer function of instr_routing.c"); break; } } @@ -514,6 +515,10 @@ static void instr_routing_parse_start_host () if (TRACE_msg_process_is_enabled()) { getContainerType("MSG_PROCESS", new->type); } + + if (TRACE_msg_task_is_enabled()) { + getContainerType ("MSG_TASK", new->type); + } } static void instr_routing_parse_end_host ()