X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a1d7fb09c29089971a104069a5b0af935892e41b..23976cb525fd51c66ef8e1234cdc5626fca83990:/examples/msg/trace-user-variables/trace-user-variables.c diff --git a/examples/msg/trace-user-variables/trace-user-variables.c b/examples/msg/trace-user-variables/trace-user-variables.c index 31b32a60c3..f25f77b26b 100644 --- a/examples/msg/trace-user-variables/trace-user-variables.c +++ b/examples/msg/trace-user-variables/trace-user-variables.c @@ -1,19 +1,8 @@ -/* Copyright (c) 2010, 2012-2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2010, 2012-2016. 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. */ -/** @addtogroup MSG_examples - * - * @section MSG_ex_tracing_user_variables Tracing user variables - * The tracing mechanism of SimGrid also allows to associate user variables to resources described in the platform file. - * The following examples illustrate this feature. They have to be run with the --cfg=tracing:yes and - * --cfg=tracing/platform:yes options. - * - * - Hosts: trace-user-variables/trace-user-variables.c. This example shows how user defined variables can be - * associated to an host and how to manage the tracing of their evolution. - */ #include #include "simgrid/msg.h" @@ -22,13 +11,12 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, "Messages specific for this msg example") static int trace_fun(int argc, char *argv[]) { const char *hostname = MSG_host_get_name(MSG_host_self()); - int i; //the hostname has an empty HDD with a capacity of 100000 (bytes) TRACE_host_variable_set(hostname, "HDD_capacity", 100000); TRACE_host_variable_set(hostname, "HDD_utilization", 0); - for (i = 0; i < 10; i++) { + for (int i = 0; i < 10; i++) { //create and execute a task just to make the simulated time advance msg_task_t task = MSG_task_create("task", 10000, 0, NULL); MSG_task_execute (task); @@ -38,7 +26,7 @@ static int trace_fun(int argc, char *argv[]) TRACE_host_variable_add(hostname, "HDD_utilization", 100); } - for (i = 0; i < 10; i++) { + for (int i = 0; i < 10; i++) { //create and execute a task just to make the simulated time advance msg_task_t task = MSG_task_create("task", 10000, 0, NULL); MSG_task_execute (task);