From: mquinson Date: Thu, 1 Apr 2010 13:54:44 +0000 (+0000) Subject: trace the message size, not the size of the pointer pointing to the task (bummer) X-Git-Tag: SVN~320 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/354fdb4b40e5266ad8effe4af0699ea96d44c3fe?ds=inline trace the message size, not the size of the pointer pointing to the task (bummer) git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@7420 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/simix/smx_network.c b/src/simix/smx_network.c index 0e1e66f28e..91eef6bb9e 100644 --- a/src/simix/smx_network.c +++ b/src/simix/smx_network.c @@ -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++;