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 / dax / dax_test.c
index 741f5a1..8ae9424 100644 (file)
@@ -33,9 +33,6 @@ int main(int argc, char **argv)
 
   /* initialisation of SD */
   SD_init(&argc, argv);
-#ifdef HAVE_TRACING
-  TRACE_start ();
-#endif
 
   /* Check our arguments */
   if (argc < 3) {
@@ -139,8 +136,5 @@ int main(int argc, char **argv)
 
   /* exit */
   SD_exit();
-#ifdef HAVE_TRACING
-  TRACE_end();
-#endif
   return 0;
 }