X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ba245ceee7f488df591e62e79a0544267fd19cb7..ed9b07e5c0c7eb6d4d38b0fe5aaea80d6996a8a7:/examples/msg/tracing/user_variables.c diff --git a/examples/msg/tracing/user_variables.c b/examples/msg/tracing/user_variables.c index ea2b959bed..e5035dbc5a 100644 --- a/examples/msg/tracing/user_variables.c +++ b/examples/msg/tracing/user_variables.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2010. The SimGrid Team. +/* Copyright (c) 2010, 2012-2014. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -9,13 +9,13 @@ * - tracing/user_variables.c: This program demonstrates how to * trace user variables associated to the hosts of the platform file. * You might want to run this program with the following parameters: - * --cfg=tracing:1 - * --cfg=tracing/platform:1 + * --cfg=tracing:yes + * --cfg=tracing/platform:yes * (See \ref tracing_tracing_options for details) */ #include -#include "msg/msg.h" +#include "simgrid/msg.h" #include "xbt/sysdep.h" /* calloc, printf */ /* Create a log channel to have nice outputs. */ @@ -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) @@ -36,7 +36,7 @@ int master(int argc, char *argv[]) for (i = 0; i < 10; i++) { //create and execute a task just to make the simulated time advance - m_task_t task = MSG_task_create("task", 10000, 0, NULL); + msg_task_t task = MSG_task_create("task", 10000, 0, NULL); MSG_task_execute (task); MSG_task_destroy (task); @@ -46,7 +46,7 @@ int master(int argc, char *argv[]) for (i = 0; i < 10; i++) { //create and execute a task just to make the simulated time advance - m_task_t task = MSG_task_create("task", 10000, 0, NULL); + msg_task_t task = MSG_task_create("task", 10000, 0, NULL); MSG_task_execute (task); MSG_task_destroy (task); @@ -59,7 +59,7 @@ int master(int argc, char *argv[]) /** Main function */ int main(int argc, char *argv[]) { - MSG_global_init(&argc, argv); + MSG_init(&argc, argv); if (argc < 3) { printf("Usage: %s platform_file deployment_file\n", argv[0]); exit(1); @@ -100,11 +100,10 @@ int main(int argc, char *argv[]) xbt_dynar_free (&link_variables); } - //create a customized triva graph configuration file + //create a customized viva graph configuration file FILE *fp; - fp = fopen ("triva_graph.plist", "w"); + fp = fopen ("viva_graph.plist", "w"); if (!fp){ - MSG_clean(); return 1; } fprintf (fp, "{\n node = ("); @@ -135,6 +134,5 @@ int main(int argc, char *argv[]) fprintf (fp, "}\n"); fclose (fp); - MSG_clean(); return 0; }