Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add new entry in Release_Notes.
[simgrid.git] / examples / c / platform-properties / platform-properties.c
index c13eb59..b7909ac 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2007-2020. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2007-2023. The SimGrid Team. All rights reserved.          */
 
 /* 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. */
@@ -54,45 +54,45 @@ static void test_host(const char* hostname)
   xbt_dict_free(&props);
 }
 
-static void alice(XBT_ATTRIB_UNUSED int argc, XBT_ATTRIB_UNUSED char* argv[])
+static void alice(int argc, char* argv[])
 { /* Dump what we have on the current host */
   test_host("host1");
 }
 
-static void carole(XBT_ATTRIB_UNUSED int argc, XBT_ATTRIB_UNUSED char* argv[])
+static void carole(int argc, char* argv[])
 {                        /* Dump what we have on a remote host */
   sg_actor_sleep_for(1); // Wait for alice to be done with its experiment
   test_host("host1");
 }
 
-static void david(XBT_ATTRIB_UNUSED int argc, XBT_ATTRIB_UNUSED char* argv[])
+static void david(int argc, char* argv[])
 {                        /* Dump what we have on a remote host */
   sg_actor_sleep_for(2); // Wait for alice and carole to be done with its experiment
   test_host("node-0.simgrid.org");
 }
 
-static void bob(XBT_ATTRIB_UNUSED int argc, XBT_ATTRIB_UNUSED char* argv[])
+static void bob(int argc, char* argv[])
 {
-  /* this host also tests the properties of the AS*/
+  /* this host also tests the properties of the NetZone*/
   const_sg_netzone_t root = sg_zone_get_root();
-  XBT_INFO("== Print the properties of the AS");
-  XBT_INFO("   Process property: filename -> %s", sg_zone_get_property_value(root, "filename"));
-  XBT_INFO("   Process property: date -> %s", sg_zone_get_property_value(root, "date"));
-  XBT_INFO("   Process property: author -> %s", sg_zone_get_property_value(root, "author"));
+  XBT_INFO("== Print the properties of the NetZone");
+  XBT_INFO("   Actor property: filename -> %s", sg_zone_get_property_value(root, "filename"));
+  XBT_INFO("   Actor property: date -> %s", sg_zone_get_property_value(root, "date"));
+  XBT_INFO("   Actor property: author -> %s", sg_zone_get_property_value(root, "author"));
 
-  /* Get the property list of current bob process */
+  /* Get the property list of current bob actor */
   xbt_dict_t props         = sg_actor_get_properties(sg_actor_self());
   xbt_dict_cursor_t cursor = NULL;
   char* key;
   char* data;
-  const char* noexist = "UnknownProcessProp";
-  XBT_ATTRIB_UNUSED const char* value;
+  const char* noexist = "UnknownActorProp";
+  const char* value;
 
-  XBT_INFO("== Print the properties of the process");
+  XBT_INFO("== Print the properties of the actor");
   xbt_dict_foreach (props, cursor, key, data)
-    XBT_INFO("   Process property: %s -> %s", key, data);
+    XBT_INFO("   Actor property: %s -> %s", key, data);
 
-  XBT_INFO("== Try to get a process property that does not exist");
+  XBT_INFO("== Try to get an actor property that does not exist");
 
   value = sg_actor_get_property_value(sg_actor_self(), noexist);
   xbt_assert(!value, "The property is defined (it shouldn't)");
@@ -104,7 +104,7 @@ int main(int argc, char* argv[])
   simgrid_init(&argc, argv);
   xbt_assert(argc > 2,
              "Usage: %s platform_file deployment_file\n"
-             "\tExample: %s msg_platform.xml msg_deployment.xml\n",
+             "\tExample: %s platform.xml deployment.xml\n",
              argv[0], argv[0]);
 
   simgrid_register_function("alice", alice);
@@ -118,7 +118,7 @@ int main(int argc, char* argv[])
 
   sg_host_t* hosts = sg_host_list();
   for (size_t i = 0; i < host_count; i++)
-    XBT_INFO("Host '%s' runs at %.0f flops/s", sg_host_get_name(hosts[i]), sg_host_speed(hosts[i]));
+    XBT_INFO("Host '%s' runs at %.0f flops/s", sg_host_get_name(hosts[i]), sg_host_get_speed(hosts[i]));
 
   free(hosts);