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 / categories.c
index ecc22fb..07d03f6 100644 (file)
@@ -106,8 +106,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");
@@ -118,9 +116,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