Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
the chrono module now cleanups its mess on gras exit
[simgrid.git] / src / gras / gras.c
index 0a7ef53..f58444c 100644 (file)
@@ -29,7 +29,7 @@ void gras_init(int *argc,char **argv, const char *defaultlog) {
   /* First initialize the XBT */
   xbt_init_defaultlog(argc,argv,defaultlog);
    
-  /*gras_chrono_init(); * FIXME: Arnaud, WTF?? It depends on MSG!! */
+  gras_chrono_init();
   /* module registrations: 
    *    - declare process specific data we need (without creating them) 
    */
@@ -61,5 +61,6 @@ void gras_exit(void) {
     gras_trp_exit();
     gras_datadesc_exit();
   }
+  gras_chrono_exit();
   xbt_exit();
 }