Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
6cb9d80f7f9b4e7b4f9cc3df3aab20a23e66e498
[simgrid.git] / examples / msg / tracing / trace_platform.c
1 /* Copyright (c) 2010, 2012-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 /** @addtogroup MSG_examples
8  * 
9  * - <b>tracing/trace_platform.c</b>: This program demonstrates how a platform file is traced to a Paje trace file
10  * format using the tracing mechanism of Simgrid. You might want to run this program with the following parameters:
11  * --cfg=tracing:yes
12  * --cfg=tracing/categorized:yes
13  * (See \ref tracing_tracing_options for details)
14  */
15
16 #include "simgrid/msg.h"
17
18 int main(int argc, char *argv[])
19 {
20   MSG_init(&argc, argv);
21   xbt_assert(argc > 1, "Usage: %s platform_file\n\tExample: %s msg_platform.xml\n", argv[0], argv[0]);
22   MSG_create_environment(argv[1]);
23   MSG_main();
24   return 0;
25 }