X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f3c1ebdb5d5e4370a0efd5f4c0dd4f7131fe8370..83149ac614195c6ce583f319de3493c31418d1fd:/examples/msg/tracing/user_variables.c diff --git a/examples/msg/tracing/user_variables.c b/examples/msg/tracing/user_variables.c index c2d7573229..0ec8ebf56e 100644 --- a/examples/msg/tracing/user_variables.c +++ b/examples/msg/tracing/user_variables.c @@ -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); @@ -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; }