Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove the public field msg_host_t->name. Use MSG_host_get_name()
[simgrid.git] / examples / msg / tracing / user_variables.c
index e249ef3..6c63b9d 100644 (file)
@@ -27,7 +27,7 @@ int master(int argc, char *argv[]);
 
 int master(int argc, char *argv[])
 {
-  char *hostname = MSG_host_self()->name;
+  const char *hostname = MSG_host_get_name(MSG_host_self());
   int i;
 
   //the hostname has an empty HDD with a capacity of 100000 (bytes)
@@ -133,6 +133,7 @@ int main(int argc, char *argv[])
   fprintf (fp, " host = {\n  type = square;\n  size = HDD_capacity; \n  values = (HDD_utilization);\n };\n");
   fprintf (fp, " link = {\n  type = rhombus;\n  size = bandwidth;\n };\n");
   fprintf (fp, "}\n");
+  fclose (fp);
 
   MSG_clean();
   return 0;