Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
also save the cbps in SG, the same way I do in RL since a long time. I love calltree
[simgrid.git] / src / gras / DataDesc / ddt_exchange.c
index 62873e4..77915d4 100644 (file)
@@ -160,19 +160,19 @@ gras_datadesc_copy_rec(gras_cbps_t           state,
        
        if (XBT_LOG_ISENABLED(gras_ddt_exchange,xbt_log_priority_verbose)) {
          if (sub_type == gras_datadesc_by_name("unsigned int")) {
        
        if (XBT_LOG_ISENABLED(gras_ddt_exchange,xbt_log_priority_verbose)) {
          if (sub_type == gras_datadesc_by_name("unsigned int")) {
-            VERB2("Copied value for field %s: %d (type: unsigned int)",field->name, *(unsigned int*)field_dst);
+            VERB2("Copied value for field '%s': %d (type: unsigned int)",field->name, *(unsigned int*)field_dst);
          } else if (sub_type == gras_datadesc_by_name("int")) {
          } else if (sub_type == gras_datadesc_by_name("int")) {
-            VERB2("Copied value for field %s: %d (type: int)",field->name, *(int*)field_dst);
+            VERB2("Copied value for field '%s': %d (type: int)",field->name, *(int*)field_dst);
             
          } else if (sub_type == gras_datadesc_by_name("unsigned long int")) {
             
          } else if (sub_type == gras_datadesc_by_name("unsigned long int")) {
-            VERB2("Copied value for field %s: %ld (type: unsigned long int)",field->name, *(unsigned long int*)field_dst);
+            VERB2("Copied value for field '%s': %ld (type: unsigned long int)",field->name, *(unsigned long int*)field_dst);
          } else if (sub_type == gras_datadesc_by_name("long int")) {
          } else if (sub_type == gras_datadesc_by_name("long int")) {
-            VERB2("Copied value for field %s: %ld (type: long int)",field->name, *(long int*)field_dst);
+            VERB2("Copied value for field '%s': %ld (type: long int)",field->name, *(long int*)field_dst);
 
          } else if (sub_type == gras_datadesc_by_name("string")) {
 
          } else if (sub_type == gras_datadesc_by_name("string")) {
-            VERB2("Copied value for field %s: '%s' (type: string)", field->name, *(char**)field_dst);   
+            VERB2("Copied value for field '%s': '%s' (type: string)", field->name, *(char**)field_dst);         
          } else {
          } else {
-            VERB1("Copied a value for field %s (type not scalar?)", field->name);
+            VERB1("Copied a value for field '%s' (type not scalar?)", field->name);
          }
        }
       
          }
        }
       
@@ -369,21 +369,22 @@ gras_datadesc_copy_rec(gras_cbps_t           state,
 int gras_datadesc_copy(gras_datadesc_type_t type, 
                       void *src, void *dst) {
   xbt_ex_t e;
 int gras_datadesc_copy(gras_datadesc_type_t type, 
                       void *src, void *dst) {
   xbt_ex_t e;
-  gras_cbps_t  state;
+  static gras_cbps_t  state=NULL;
   xbt_dict_t  refs; /* all references already sent */
   int size=0;
  
   xbt_assert0(type,"called with NULL type descriptor");
 
   refs = xbt_dict_new();
   xbt_dict_t  refs; /* all references already sent */
   int size=0;
  
   xbt_assert0(type,"called with NULL type descriptor");
 
   refs = xbt_dict_new();
-  state = gras_cbps_new();
+  if (!state)
+    state = gras_cbps_new();
   
   TRY {
     size = gras_datadesc_copy_rec(state,refs,type,(char*)src,(char*)dst,0, 
                                  type->cycle);
   } CLEANUP {
     xbt_dict_free(&refs);
   
   TRY {
     size = gras_datadesc_copy_rec(state,refs,type,(char*)src,(char*)dst,0, 
                                  type->cycle);
   } CLEANUP {
     xbt_dict_free(&refs);
-    gras_cbps_free(&state);
+    gras_cbps_reset(state);
   } CATCH(e) {
     RETHROW;
   }
   } CATCH(e) {
     RETHROW;
   }