Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
move e_surf_link_sharing_policy_t structure to surf.h and fix the way to create link...
[simgrid.git] / src / surf / surf_routing.c
index 8ed16fc..021d218 100644 (file)
@@ -51,9 +51,8 @@ void routing_model_create(size_t size_of_links, void* loopback) {
   }
   fprintf(stderr,"Routing model %s not found. Existing models:\n",wanted);
   for (cpt=0;models[cpt].name;cpt++)
-    if (!strcmp(wanted,models[cpt].name))
-      fprintf(stderr,"   %s: %s\n",models[cpt].name,models[cpt].desc);
-  exit(1);
+    fprintf(stderr,"   %s: %s\n",models[cpt].name,models[cpt].desc);
+  xbt_die("Invalid model.");
 }
 
 /* ************************************************************************** */
@@ -1087,9 +1086,6 @@ void routing_add_host(char* host_id)
        DEBUG2("Seen host %s (#%d)",host_id,used_routing->host_count);
        *val = used_routing->host_count++;
        xbt_dict_set(used_routing->host_id,host_id,val,xbt_free);
-       #ifdef HAVE_TRACING
-         TRACE_surf_host_define_id (host_id, *val);
-       #endif
 }
 
 void routing_set_routes()