From: Arnaud Giersch Date: Wed, 10 Oct 2012 16:02:24 +0000 (+0200) Subject: Cannot use a dsend here, or it will be aborted when the process is terminated just... X-Git-Tag: v3_8~82 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/c69fbaf5f73a1efeda8a8160b831b36c7d31f891?hp=922f6e237f2ad76ab469014cbaf995b27cac3ea7;ds=sidebyside Cannot use a dsend here, or it will be aborted when the process is terminated just after. --- diff --git a/examples/msg/pmm/msg_pmm.c b/examples/msg/pmm/msg_pmm.c index eda3b83e55..7c461a0be7 100644 --- a/examples/msg/pmm/msg_pmm.c +++ b/examples/msg/pmm/msg_pmm.c @@ -170,7 +170,7 @@ int node(int argc, char **argv) result->sC = xbt_matrix_new_sub(sC, NODE_MATRIX_SIZE, NODE_MATRIX_SIZE, 0, 0, NULL); task = MSG_task_create("result",100,100,result); - MSG_task_dsend(task, "0", (void_f_pvoid_t) MSG_task_destroy); + MSG_task_send(task, "0"); } /* Clean up and finish*/