Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
That pointer to function was never given anything but one value
[simgrid.git] / src / surf / surf_routing_none.c
index 0341778..c6394d8 100644 (file)
@@ -6,52 +6,47 @@
 
 #include "surf_routing_private.h"
 
-/* Global vars */
-extern routing_global_t global_routing;
-extern routing_component_t current_routing;
-extern model_type_t current_routing_model;
-
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_none, surf, "Routing part of surf");
 
 /* Routing model structure */
 /* Business methods */
-static xbt_dynar_t none_get_onelink_routes(routing_component_t rc)
+static xbt_dynar_t none_get_onelink_routes(AS_t rc)
 {
   return NULL;
 }
 
-static route_extended_t none_get_route(routing_component_t rc,
+static route_extended_t none_get_route(AS_t rc,
                                        const char *src, const char *dst)
 {
   return NULL;
 }
 
-static route_extended_t none_get_bypass_route(routing_component_t rc,
+static route_extended_t none_get_bypass_route(AS_t rc,
                                               const char *src,
                                               const char *dst)
 {
   return NULL;
 }
 
-static void none_finalize(routing_component_t rc)
+static void none_finalize(AS_t rc)
 {
   xbt_free(rc);
 }
 
-static void none_parse_PU(routing_component_t rc,
+static void none_parse_PU(AS_t rc,
                                      const char *name)
 {
 }
 
-static void none_parse_AS(routing_component_t rc,
+static void none_parse_AS(AS_t rc,
                                        const char *name)
 {
 }
 
 /* Creation routing model functions */
-routing_component_t model_none_create(void)
+AS_t model_none_create(void)
 {
-  routing_component_t new_component = xbt_new(s_routing_component_t, 1);
+  AS_t new_component = xbt_new(s_as_t, 1);
   new_component->parse_PU = none_parse_PU;
   new_component->parse_AS = none_parse_AS;
   new_component->parse_route = NULL;