X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ae8140f19db6cb86f753e32499eab49190846d1f..ed9b07e5c0c7eb6d4d38b0fe5aaea80d6996a8a7:/examples/msg/tracing/trace_platform.c diff --git a/examples/msg/tracing/trace_platform.c b/examples/msg/tracing/trace_platform.c index ffcfaa1255..da2fd446d3 100644 --- a/examples/msg/tracing/trace_platform.c +++ b/examples/msg/tracing/trace_platform.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 @@ -10,13 +10,13 @@ * platform file is traced to a Paje trace file format using the tracing * mechanism of Simgrid. * You might want to run this program with the following parameters: - * --cfg=tracing:1 - * --cfg=tracing/categorized:1 + * --cfg=tracing:yes + * --cfg=tracing/categorized:yes * (See \ref tracing_tracing_options for details) */ #include -#include "msg/msg.h" +#include "simgrid/msg.h" #include "xbt/sysdep.h" /* calloc, printf */ #include "xbt/log.h" @@ -26,7 +26,7 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, "Messages specific for this msg example") /** Main function */ int main(int argc, char *argv[]) { - MSG_global_init(&argc, argv); + MSG_init(&argc, argv); if (argc < 2) { printf("Usage: %s platform_file\n", argv[0]); exit(1); @@ -35,6 +35,5 @@ int main(int argc, char *argv[]) char *platform_file = argv[1]; MSG_create_environment(platform_file); MSG_main(); - MSG_clean(); return 0; }