From 6372a504431294a747f1513c8611912504a7cb39 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Fri, 16 Jun 2017 18:03:20 +0200 Subject: [PATCH] fix most of the MC tests. Liveness and CommPattern remain broken --- src/mc/mc_base.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mc/mc_base.cpp b/src/mc/mc_base.cpp index f1b7d8054c..b178888c2b 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: -- 2.20.1