X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4afde5a12341a68569e8c15d06a799d3b26338e9..26af220e017a088b56105b2f21fadecf7d6e2a88:/src/mc/mc_client_api.cpp diff --git a/src/mc/mc_client_api.cpp b/src/mc/mc_client_api.cpp index 192770fe5e..179033ba13 100644 --- a/src/mc/mc_client_api.cpp +++ b/src/mc/mc_client_api.cpp @@ -12,10 +12,10 @@ #include "mc_record.h" #include "mc_private.h" #include "mc_mmalloc.h" -#include "mc_model_checker.h" #include "mc_ignore.h" #include "mc_protocol.h" #include "mc_client.h" +#include "ModelChecker.hpp" extern "C" { @@ -65,7 +65,7 @@ void MC_ignore(void* addr, size_t size) // TODO, remove this once the migration has been completed xbt_mheap_t heap = mmalloc_set_current_heap(mc_heap); - MC_process_ignore_memory(&mc_model_checker->process, addr, size); + MC_process_ignore_memory(&mc_model_checker->process(), addr, size); mmalloc_set_current_heap(heap); }