From: Lucas Schnorr Date: Tue, 20 Sep 2011 09:31:51 +0000 (+0200) Subject: [trace] "bugfix", this line is causing a segfault in a mapreduce simulator X-Git-Tag: v3_6_2~81 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/5b32b671c89ee3010ea843eeabf39aee2f5fad3a [trace] "bugfix", this line is causing a segfault in a mapreduce simulator details: - its removal seems not change the tracing behavior - the line was added in a previous commit to "Fix race condition on task put/get", from 2010-12-15. --- diff --git a/src/msg/msg_mailbox.c b/src/msg/msg_mailbox.c index 29bc223e97..259cc056f5 100644 --- a/src/msg/msg_mailbox.c +++ b/src/msg/msg_mailbox.c @@ -158,7 +158,6 @@ MSG_mailbox_put_with_timeout(msg_mailbox_t mailbox, m_task_t task, smx_action_t comm = SIMIX_req_comm_isend(mailbox, t_simdata->message_size, t_simdata->rate, task, sizeof(void *), NULL, NULL, 0); - t_simdata->comm = comm; SIMIX_req_set_category(comm, task->category); SIMIX_req_comm_wait(comm, timeout); } else {