Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot//simgrid/simgrid
[simgrid.git] / tools / graphicator / graphicator.c
index 2f1a887..7efa7df 100644 (file)
@@ -28,17 +28,13 @@ 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 has tracing enabled.");
+  XBT_INFO ("works only if simgrid was compiled with tracing enabled.");
 #endif
   return 0;
 }