X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c4aa4cede2e91d6f21df5c34bb55ad8bf0207e2a..af2164d627a93c6a6e287e45959efb83658f37c5:/src/msg/msg_mailbox.c diff --git a/src/msg/msg_mailbox.c b/src/msg/msg_mailbox.c index 3aa3a90553..194c133aea 100644 --- a/src/msg/msg_mailbox.c +++ b/src/msg/msg_mailbox.c @@ -118,7 +118,7 @@ MSG_mailbox_get_task_ext(msg_mailbox_t mailbox, m_task_t * task, xbt_ex_free(e); } if (comm != NULL) { - SIMIX_req_comm_destroy(comm); + //SIMIX_req_comm_destroy(comm); } if (ret != MSG_HOST_FAILURE && @@ -164,7 +164,7 @@ MSG_mailbox_put_with_timeout(msg_mailbox_t mailbox, m_task_t task, /* Try to send it by calling SIMIX network layer */ TRY { comm = SIMIX_req_comm_isend(mailbox, t_simdata->message_size, - t_simdata->rate, task, sizeof(void *), NULL, NULL); + t_simdata->rate, task, sizeof(void *), NULL, NULL, 0); t_simdata->comm = comm; #ifdef HAVE_TRACING SIMIX_req_set_category(comm, task->category); @@ -193,7 +193,7 @@ MSG_mailbox_put_with_timeout(msg_mailbox_t mailbox, m_task_t task, } if (comm != NULL) { - SIMIX_req_comm_destroy(comm); + //SIMIX_req_comm_destroy(comm); } process->simdata->waiting_task = NULL;