Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into MC_LTL
[simgrid.git] / src / gras / DataDesc / datadesc.c
index 3c965c9..220607f 100644 (file)
@@ -37,7 +37,7 @@ void gras_datadesc_init(void)
   if (gras_datadesc_set_local != NULL)
     return;
 
-  VERB0("Initializing DataDesc");
+  XBT_VERB("Initializing DataDesc");
 
   gras_datadesc_set_local = xbt_set_new();
 
@@ -158,7 +158,7 @@ void gras_datadesc_init(void)
   ddt = gras_datadesc_ref("xbt_peer_t", ddt);
 
   /* Dict containing the constant value (for the parsing macro) */
-  gras_dd_constants = xbt_dict_new();
+  gras_dd_constants = xbt_dict_new_homogeneous(xbt_free_f);
 
 }
 
@@ -169,10 +169,10 @@ void gras_datadesc_init(void)
  **/
 void gras_datadesc_exit(void)
 {
-  VERB0("Exiting DataDesc");
+  XBT_VERB("Exiting DataDesc");
   xbt_set_free(&gras_datadesc_set_local);
   xbt_dict_free(&gras_dd_constants);
-  DEBUG0("Exited DataDesc");
+  XBT_DEBUG("Exited DataDesc");
 }
 
 /** This is mainly to debug */