Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
- Reduce the number of system headers loaded, overload some more system
[simgrid.git] / src / gras / DataDesc / datadesc.c
index b4c4889..c2e5388 100644 (file)
@@ -8,9 +8,9 @@
 /* This program is free software; you can redistribute it and/or modify it
    under the terms of the license (GNU LGPL) which comes with this package. */
 
-#include "DataDesc/datadesc_private.h"
+#include "gras/DataDesc/datadesc_private.h"
 
-GRAS_LOG_NEW_DEFAULT_SUBCATEGORY(datadesc,GRAS);
+GRAS_LOG_NEW_DEFAULT_SUBCATEGORY(datadesc,gras,"Data description");
 /* FIXME: make this host-dependent using a trick such as UserData*/
 gras_set_t *gras_datadesc_set_local=NULL;
 
@@ -197,9 +197,9 @@ void gras_datadesc_type_dump(const gras_datadesc_type_t *ddt){
   for (cpt=0; cpt<gras_arch_count; cpt++) {
     printf("%s%s%ld%s",
           cpt>0?", ":"",
-          cpt == GRAS_THISARCH ? "*":"",
+          cpt == GRAS_THISARCH ? ">":"",
           ddt->size[cpt],
-          cpt == GRAS_THISARCH ? "*":"");
+          cpt == GRAS_THISARCH ? "<":"");
   }
   printf ("]\n");
 
@@ -207,9 +207,9 @@ void gras_datadesc_type_dump(const gras_datadesc_type_t *ddt){
   for (cpt=0; cpt<gras_arch_count; cpt++) {
     printf("%s%s%ld%s",
           cpt>0?", ":"",
-          cpt == GRAS_THISARCH ? "*":"",
+          cpt == GRAS_THISARCH ? ">":"",
           ddt->alignment[cpt],
-          cpt == GRAS_THISARCH ? "*":"");
+          cpt == GRAS_THISARCH ? "<":"");
   }
   printf ("]\n");
 
@@ -217,9 +217,9 @@ void gras_datadesc_type_dump(const gras_datadesc_type_t *ddt){
   for (cpt=0; cpt<gras_arch_count; cpt++) {
     printf("%s%s%ld%s",
           cpt>0?", ":"",
-          cpt == GRAS_THISARCH ? "*":"",
+          cpt == GRAS_THISARCH ? ">":"",
           ddt->aligned_size[cpt],
-          cpt == GRAS_THISARCH ? "*":"");
+          cpt == GRAS_THISARCH ? "<":"");
   }
   printf ("]\n");
   if (ddt->category_code == e_gras_datadesc_type_cat_struct) {