Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[trace] "bugfix", this line is causing a segfault in a mapreduce simulator
authorLucas Schnorr <Lucas.Schnorr@imag.fr>
Tue, 20 Sep 2011 09:31:51 +0000 (11:31 +0200)
committerLucas Schnorr <Lucas.Schnorr@imag.fr>
Tue, 20 Sep 2011 09:31:51 +0000 (11:31 +0200)
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.

src/msg/msg_mailbox.c

index 29bc223..259cc05 100644 (file)
@@ -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 {