Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
trace the message size, not the size of the pointer pointing to the task (bummer)
[simgrid.git] / src / simix / smx_network.c
index 0e1e66f..91eef6b 100644 (file)
@@ -373,7 +373,7 @@ void SIMIX_network_copy_data(smx_comm_t comm)
   {
     if (msg_sizes == NULL)
       msg_sizes = xbt_dict_new();
-    uintptr_t casted_size = buff_size;
+    uintptr_t casted_size = comm->task_size;
     uintptr_t amount = xbt_dicti_get(msg_sizes, casted_size);
     amount++;