X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7fa961e29eb3f67e9770c9f995c602e88091d74c..4b78b143daece4e5b11f11a7cf26cd68ac32f80b:/src/instr/instr_routing.c diff --git a/src/instr/instr_routing.c b/src/instr/instr_routing.c index 05e42e49d5..7a640a2878 100644 --- a/src/instr/instr_routing.c +++ b/src/instr/instr_routing.c @@ -233,7 +233,10 @@ static void instr_routing_parse_start_router () container_t father = xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1); char type[INSTR_DEFAULT_STR_SIZE]; snprintf (type, INSTR_DEFAULT_STR_SIZE, "ROUTER-%s", father->type); - newContainer (A_surfxml_router_id, type, "ROUTER"); + container_t new = newContainer (A_surfxml_router_id, type, "ROUTER"); + + //register created host on the dictionary + xbt_dict_set (allContainers, A_surfxml_router_id, new, NULL); } static void instr_routing_parse_end_router ()