X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/96276d3834e5af1b4fc06a4c64c705108d5cd855..e6e653ac5c6803a507ccb966a6e561500f0208a2:/src/msg/msg_gos.c diff --git a/src/msg/msg_gos.c b/src/msg/msg_gos.c index 24babd3f78..bcc59e135c 100644 --- a/src/msg/msg_gos.c +++ b/src/msg/msg_gos.c @@ -75,7 +75,7 @@ msg_error_t MSG_parallel_task_execute(msg_task_t task) XBT_DEBUG("Parallel execution action created: %p", simdata->compute); } else { simdata->compute = simcall_host_execute(task->name, - p_simdata->m_host->smx_host, + p_simdata->m_host, simdata->computation_amount, simdata->priority); @@ -434,12 +434,6 @@ int MSG_comm_test(msg_comm_t comm) xbt_ex_t e; int finished = 0; - /* Ignore some variables from xbt/ex.h used by exception e for stacks comparison */ - if (MC_is_active()){ - MC_ignore_stack("e", "MSG_comm_test"); - MC_ignore_stack("__ex_cleanup", "MSG_comm_test"); - } - TRY { finished = simcall_comm_test(comm->s_comm);