X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/166ad11130482e81d2c3e860ab6c61e972a4cdf6..30f40863fc506c7013dec1902201d4bdffe3a101:/src/mc/mc_base.cpp diff --git a/src/mc/mc_base.cpp b/src/mc/mc_base.cpp index f1b7d8054c..6f13189458 100644 --- a/src/mc/mc_base.cpp +++ b/src/mc/mc_base.cpp @@ -79,7 +79,7 @@ bool request_is_enabled(smx_simcall_t req) { /* FIXME: check also that src and dst processes are not suspended */ simgrid::kernel::activity::CommImpl* act = - static_cast(&*simcall_comm_wait__get__comm(req)); + static_cast(simcall_comm_wait__getraw__comm(req)); #if SIMGRID_HAVE_MC // Fetch from MCed memory: @@ -107,7 +107,7 @@ bool request_is_enabled(smx_simcall_t req) case SIMCALL_COMM_WAITANY: { xbt_dynar_t comms; simgrid::kernel::activity::CommImpl* act = - static_cast(&*simcall_comm_wait__get__comm(req)); + static_cast(simcall_comm_wait__getraw__comm(req)); #if SIMGRID_HAVE_MC s_xbt_dynar_t comms_buffer;