Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics
[simgrid.git] / teshsuite / simdag / is-router / is-router.cpp
index 9039cdc..3c963c9 100644 (file)
@@ -3,17 +3,14 @@
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
-#include <stdio.h>
+#include "simgrid/s4u/host.hpp"
 #include "simgrid/simdag.h"
+#include "src/kernel/routing/NetCard.hpp"
 #include "src/surf/surf_routing.hpp"
-#include "simgrid/s4u/host.hpp"
-
+#include <stdio.h>
 
 int main(int argc, char **argv)
 {
-  /* SD initialization */
-  char *key, *data;
-
   SD_init(&argc, argv);
   SD_create_environment(argv[1]);
 
@@ -23,15 +20,17 @@ int main(int argc, char **argv)
   printf("Host number: %zu, link number: %d, elmts number: %d\n", sg_host_count(), sg_link_count(), size);
 
   int it;
-  xbt_dynar_foreach(hosts, it, data) {
-    sg_host_t host = (sg_host_t)data;
+  sg_host_t host;
+  xbt_dynar_foreach(hosts, it, host) {
     simgrid::kernel::routing::NetCard * nc = host->pimpl_netcard;
     printf("   - Seen: \"%s\". Type: %s\n", host->name().c_str(), nc->isRouter() ? "router" : (nc->isAS()?"AS":"host"));
   }
   xbt_dynar_free(&hosts);
 
   xbt_lib_cursor_t cursor = nullptr;
-  xbt_lib_foreach(as_router_lib, cursor, key, data) {
+  char* key;
+  void *ignored;
+  xbt_lib_foreach(as_router_lib, cursor, key, ignored) {
     simgrid::kernel::routing::NetCard * nc = sg_netcard_by_name_or_null(key);
     printf("   - Seen: \"%s\". Type: %s\n", key, nc->isRouter() ? "router" : (nc->isAS()?"AS":"host"));
   }