From 8c2b581db9d4180e4b964f451e76f0d2c0b73178 Mon Sep 17 00:00:00 2001 From: cristianrosa Date: Wed, 15 Dec 2010 16:05:20 +0000 Subject: [PATCH] Do not use the user data argument of isend. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@9260 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- src/msg/msg_mailbox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msg/msg_mailbox.c b/src/msg/msg_mailbox.c index c77de82f87..974d4b3c30 100644 --- a/src/msg/msg_mailbox.c +++ b/src/msg/msg_mailbox.c @@ -162,7 +162,7 @@ MSG_mailbox_put_with_timeout(msg_mailbox_t mailbox, m_task_t task, /* Try to send it by calling SIMIX network layer */ TRY { t_simdata->comm = SIMIX_req_comm_isend(mailbox, t_simdata->message_size, - t_simdata->rate, task, sizeof(void *), NULL, task); + t_simdata->rate, task, sizeof(void *), NULL, NULL); #ifdef HAVE_TRACING SIMIX_req_set_category(t_simdata->comm, task->category); #endif -- 2.20.1