Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge pull request #181 from bcamus/master
[simgrid.git] / examples / msg / platform-properties / platform-properties.c
index 83acf80..a7b4d59 100644 (file)
@@ -7,7 +7,7 @@
 
 XBT_LOG_NEW_DEFAULT_CATEGORY(test, "Property test");
 
-static void test_host(const char*hostname) 
+static void test_host(const char*hostname)
 {
   msg_host_t thehost = MSG_host_by_name(hostname);
   xbt_dict_t props = MSG_host_get_properties(thehost);
@@ -65,11 +65,11 @@ static int david(int argc, char *argv[]) {/* Dump what we have on a remote host
 static int bob(int argc, char *argv[])
 {
   /* this host also tests the properties of the AS*/
-  msg_as_t root = MSG_environment_get_routing_root();
+  msg_as_t root = MSG_zone_get_root();
   XBT_INFO("== Print the properties of the AS");
-  XBT_INFO("   Process property: filename -> %s", MSG_environment_as_get_property_value(root, "filename"));
-  XBT_INFO("   Process property: date -> %s", MSG_environment_as_get_property_value(root, "date"));
-  XBT_INFO("   Process property: author -> %s", MSG_environment_as_get_property_value(root, "author"));
+  XBT_INFO("   Process property: filename -> %s", MSG_zone_get_property_value(root, "filename"));
+  XBT_INFO("   Process property: date -> %s", MSG_zone_get_property_value(root, "date"));
+  XBT_INFO("   Process property: author -> %s", MSG_zone_get_property_value(root, "author"));
 
   /* Get the property list of current bob process */
   xbt_dict_t props = MSG_process_get_properties(MSG_process_self());