Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
SD_init and SD_exit call TRACE_start/end if tracing is enabled
[simgrid.git] / examples / simdag / dot / dot_test.c
index 319be24..4a6da7b 100644 (file)
@@ -25,8 +25,6 @@ int main(int argc, char **argv)
   /* initialisation of SD */
   SD_init(&argc, argv);
 
-  TRACE_start ();
-
   /* Check our arguments */
   if (argc < 3) {
     INFO1("Usage: %s platform_file dot_file [trace_file]", argv[0]);
@@ -124,7 +122,5 @@ int main(int argc, char **argv)
 
   /* exit */
   SD_exit();
-
-  TRACE_end();
   return 0;
 }