Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Cosmetics: fix comment.
[simgrid.git] / src / gras / Msg / gras_msg_mod.c
index d9a6322..04f3718 100644 (file)
@@ -59,8 +59,8 @@ int gras_msg_libdata_id;
 void gras_msg_register()
 {
   gras_msg_libdata_id =
-    gras_procdata_add("gras_msg", gras_msg_procdata_new,
-                      gras_msg_procdata_free);
+      gras_procdata_add("gras_msg", gras_msg_procdata_new,
+                        gras_msg_procdata_free);
 }
 
 /*
@@ -72,7 +72,7 @@ void gras_msg_init(void)
   if (_gras_msgtype_set != NULL)
     return;
 
-  VERB0("Initializing Msg");
+  XBT_VERB("Initializing Msg");
 
   _gras_msgtype_set = xbt_set_new();
 
@@ -81,10 +81,10 @@ void gras_msg_init(void)
   _GRAS_header[5] = (char) GRAS_THISARCH;
 
   gras_msg_ctx_mallocator =
-    xbt_mallocator_new(1000,
-                       gras_msg_ctx_mallocator_new_f,
-                       gras_msg_ctx_mallocator_free_f,
-                       gras_msg_ctx_mallocator_reset_f);
+      xbt_mallocator_new(1000,
+                         gras_msg_ctx_mallocator_new_f,
+                         gras_msg_ctx_mallocator_free_f,
+                         gras_msg_ctx_mallocator_reset_f);
 }
 
 /*
@@ -92,7 +92,7 @@ void gras_msg_init(void)
  */
 void gras_msg_exit(void)
 {
-  VERB0("Exiting Msg");
+  XBT_VERB("Exiting Msg");
   xbt_set_free(&_gras_msgtype_set);
 
   xbt_mallocator_free(gras_msg_ctx_mallocator);