X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b738bea68519ee23e8c3b12c1a290e576d879243..b857f66adac2e677a8a2642afe500e9a5f19e474:/src/instr/instr_routing.c diff --git a/src/instr/instr_routing.c b/src/instr/instr_routing.c index b617787eff..bc53ae6e51 100644 --- a/src/instr/instr_routing.c +++ b/src/instr/instr_routing.c @@ -389,7 +389,7 @@ static void recursiveGraphExtraction (container_t container) (child2->kind == INSTR_HOST || child2->kind == INSTR_ROUTER)){ //getting route - xbt_dynar_t route; + xbt_dynar_t route = NULL; xbt_ex_t exception; TRY { route = global_routing->get_route (child_name1, child_name2); @@ -414,7 +414,7 @@ static void recursiveGraphExtraction (container_t container) //getting route routing_component_t root = global_routing->root; - route_extended_t route; + route_extended_t route = NULL; xbt_ex_t exception; TRY { route = root->get_route (root, child_name1, child_name2); @@ -515,11 +515,13 @@ static void instr_routing_parse_start_host () if (TRACE_msg_process_is_enabled()) { type_t msg_process = getContainerType("MSG_PROCESS", new->type); getStateType ("MSG_PROCESS_STATE", msg_process); + getLinkType ("MSG_PROCESS_LINK", rootType, msg_process, msg_process); } if (TRACE_msg_task_is_enabled()) { type_t msg_task = getContainerType ("MSG_TASK", new->type); getStateType ("MSG_TASK_STATE", msg_task); + getLinkType ("MSG_TASK_LINK", rootType, msg_task, msg_task); } }