X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f04659b6df988856be778c0221f777a6283c2855..8e58def7059f57874735b0ed8897f8ad49a12eb5:/tools/graphicator/graphicator.c diff --git a/tools/graphicator/graphicator.c b/tools/graphicator/graphicator.c index 7ad0f4ddf6..4f24150b3d 100644 --- a/tools/graphicator/graphicator.c +++ b/tools/graphicator/graphicator.c @@ -9,13 +9,16 @@ #endif #include "msg/msg.h" +#include "xbt/graph.h" XBT_LOG_NEW_DEFAULT_CATEGORY(graphicator, "Graphicator Logging System"); int main(int argc, char **argv) { - MSG_global_init(&argc, argv); + XBT_LOG_CONNECT(graphicator); +#ifdef HAVE_TRACING + MSG_init(&argc, argv); if (argc < 3){ XBT_INFO("Usage: %s ", argv[0]); @@ -26,14 +29,12 @@ int main(int argc, char **argv) MSG_create_environment(platformFile); - //creating the graph structure - xbt_graph_t graph = TRACE_platform_graph(); - if (graph == NULL){ - XBT_INFO ("%s expects --cfg=tracing:1", argv[0]); - }else{ - TRACE_platform_graph_export_graphviz (graph, graphvizFile); - XBT_INFO ("Output is in file %s", graphvizFile); + int status = TRACE_platform_graph_export_graphviz (graphvizFile); + if (status == 0){ + XBT_INFO ("%s expects --cfg=tracing:1 --cfg=tracing/platform:1", argv[0]); } - MSG_clean(); +#else + XBT_INFO ("works only if simgrid was compiled with tracing enabled."); +#endif return 0; }