X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1d558deeec797460abbfa5ed52f1e7ae784dcf7e..8cc10e99f53995bc7486e4467b4e6ad8d7be3460:/src/instr/instr_routing.c diff --git a/src/instr/instr_routing.c b/src/instr/instr_routing.c index c81c10318a..df7e05bbe8 100644 --- a/src/instr/instr_routing.c +++ b/src/instr/instr_routing.c @@ -151,10 +151,10 @@ static void recursiveGraphExtraction (routing_component_t rc, container_t contai /* * Callbacks */ -static void instr_routing_parse_start_AS () +static void instr_routing_parse_start_AS (const char*id,const char*routing) { if (getRootContainer() == NULL){ - container_t root = newContainer (A_surfxml_AS_id, INSTR_AS, NULL); + container_t root = newContainer (id, INSTR_AS, NULL); instr_paje_init (root); if (TRACE_smpi_is_enabled()) { @@ -174,7 +174,7 @@ static void instr_routing_parse_start_AS () if (TRACE_needs_platform()){ container_t father = *(container_t*)xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1); - container_t new = newContainer (A_surfxml_AS_id, INSTR_AS, father); + container_t new = newContainer (id, INSTR_AS, father); xbt_dynar_push (currentContainer, &new); } } @@ -288,8 +288,8 @@ void instr_routing_define_callbacks () if (!TRACE_is_enabled()) return; //always need the call backs to ASes (we need only the root AS), //to create the rootContainer and the rootType properly - sg_platf_ASopen_add_cb(instr_routing_parse_start_AS); - sg_platf_ASclose_add_cb(instr_routing_parse_end_AS); + sg_platf_AS_begin_add_cb(instr_routing_parse_start_AS); + sg_platf_AS_end_add_cb(instr_routing_parse_end_AS); if (!TRACE_needs_platform()) return; sg_platf_link_add_cb(instr_routing_parse_start_link); sg_platf_host_add_cb(instr_routing_parse_start_host);