X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d477bee0661bd4c21b7fd5e1ac9d68a07c6ff086..330c412486ad86896ffff897a620c2d253f32386:/src/mc/remote/Client.cpp diff --git a/src/mc/remote/Client.cpp b/src/mc/remote/Client.cpp index 8d7b91568d..a1c92425e1 100644 --- a/src/mc/remote/Client.cpp +++ b/src/mc/remote/Client.cpp @@ -183,7 +183,7 @@ void Client::ignore_memory(void* addr, std::size_t size) void Client::ignore_heap(void* address, std::size_t size) { - const mdesc* heap = mmalloc_get_current_heap(); + const s_xbt_mheap_t* heap = mmalloc_get_current_heap(); s_mc_message_ignore_heap_t message; message.type = MC_MESSAGE_IGNORE_HEAP; @@ -227,7 +227,7 @@ void Client::declare_symbol(const char* name, int* value) void Client::declare_stack(void* stack, size_t size, ucontext_t* context) { - const mdesc* heap = mmalloc_get_current_heap(); + const s_xbt_mheap_t* heap = mmalloc_get_current_heap(); s_stack_region_t region; memset(®ion, 0, sizeof(region));