Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
TRACE_start and TRACE_end should no longer be called by user-code
[simgrid.git] / examples / msg / tracing / tasks.c
index ca955ee..8cac0f8 100644 (file)
@@ -110,8 +110,6 @@ int main(int argc, char *argv[])
     printf("example: %s msg_platform.xml msg_deployment.xml\n", argv[0]);
     exit(1);
   }
-  //starting the simulation tracing
-  TRACE_start();
 
   //declaring user categories
   TRACE_category("compute");
@@ -120,9 +118,6 @@ int main(int argc, char *argv[])
   res = test_all(argv[1], argv[2]);
   MSG_clean();
 
-  //ending the simulation tracing
-  TRACE_end();
-
   if (res == MSG_OK)
     return 0;
   else