From 1594591ff5c2007a97f0c1347e87b78c0d64768f Mon Sep 17 00:00:00 2001 From: cristianrosa Date: Wed, 15 Dec 2010 16:05:18 +0000 Subject: [PATCH] Do not use the data argument of isend anymore. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@9259 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- src/msg/gos.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/msg/gos.c b/src/msg/gos.c index 92dfac4a6a..3010fa0746 100644 --- a/src/msg/gos.c +++ b/src/msg/gos.c @@ -411,10 +411,10 @@ msg_comm_t MSG_task_isend(m_task_t task, const char *alias) msg_global->sent_msg++; /* Send it by calling SIMIX network layer */ - - return SIMIX_req_comm_isend(mailbox, t_simdata->message_size, - t_simdata->rate, task, sizeof(void *), NULL, - &t_simdata->comm); + t_simdata->comm = + SIMIX_req_comm_isend(mailbox, t_simdata->message_size, + t_simdata->rate, task, sizeof(void *), NULL, NULL); + return t_simdata->comm; } /** \ingroup msg_gos_functions -- 2.20.1