X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d97d6e19cb366fd112e63d56a9f411d968ee8670..2b4c4cf7533ad4a7405c807132943c6139233cb2:/src/mc/mc_client_api.cpp diff --git a/src/mc/mc_client_api.cpp b/src/mc/mc_client_api.cpp index 192770fe5e..f4bed1b6cf 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" { @@ -62,11 +62,6 @@ void MC_ignore(void* addr, size_t size) message.size = size; MC_client_send_message(&message, sizeof(message)); } - - // 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); - mmalloc_set_current_heap(heap); } }