X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8353ca761ac086a2dffa56a6b1c862f19b803879..bbf0a1be10f50acc2440bdd52e5649cdd091affe:/src/surf/network_gtnets.c diff --git a/src/surf/network_gtnets.c b/src/surf/network_gtnets.c index b6e13573ef..d6ff8522cf 100644 --- a/src/surf/network_gtnets.c +++ b/src/surf/network_gtnets.c @@ -113,9 +113,8 @@ static void create_gtnets_topology() int src_id,dst_id; XBT_DEBUG("Starting topology generation"); -// À refaire plus tard. Il faut prendre la liste des hôtes/routeurs (dans routing) -// À partir de cette liste, on les numérote. -// Ensuite, on peut utiliser les id pour refaire les appels GTNets qui suivent. +// FIXME: We should take the list of hosts/routers (in the routing module), number the elements of this list, +// and then you can use the id to reimplement properly the following GTNets calls //get the onelinks from the parsed platform xbt_dynar_t onelink_routes = global_routing->get_onelink_routes(); @@ -151,7 +150,7 @@ static void create_gtnets_topology() } /* Main XML parsing */ -static void define_callbacks(const char *file) +static void define_callbacks(void) { /* Figuring out the network links */ surfxml_add_callback(ETag_surfxml_link_cb_list, &parse_link_init); @@ -170,8 +169,7 @@ static int action_unref(surf_action_t action) if (!action->refcount) { xbt_swag_remove(action, action->state_set); #ifdef HAVE_TRACING - if (action->category) - xbt_free(action->category); + xbt_free(action->category); #endif surf_action_free(&action); return 1; @@ -454,12 +452,12 @@ static int get_latency_limited(surf_action_t action) } #endif -void surf_network_model_init_GTNETS(const char *filename) +void surf_network_model_init_GTNETS(void) { if (surf_network_model) return; surf_network_model_init_internal(); - define_callbacks(filename); + define_callbacks(); xbt_dynar_push(model_list, &surf_network_model); #ifdef HAVE_LATENCY_BOUND_TRACKING