X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c055a4846388b726f1c2056b601b71273e0db7d9..c97cae03adbd2e3159e5e909b050183dbcf49d60:/examples/msg/platform-properties/platform-properties.c diff --git a/examples/msg/platform-properties/platform-properties.c b/examples/msg/platform-properties/platform-properties.c index dfc751f0e3..83acf804d2 100644 --- a/examples/msg/platform-properties/platform-properties.c +++ b/examples/msg/platform-properties/platform-properties.c @@ -64,6 +64,13 @@ 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(); + 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")); + /* Get the property list of current bob process */ xbt_dict_t props = MSG_process_get_properties(MSG_process_self()); xbt_dict_cursor_t cursor = NULL;