X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5fa8d6780a107eb5ae1ff8a233b0dd23cb065f8a..f703e5eea34c57dbfcda1f9c6d2e8ac3f1512062:/src/xbt/mmalloc/mfree.c diff --git a/src/xbt/mmalloc/mfree.c b/src/xbt/mmalloc/mfree.c index af8372068e..d380809c3f 100644 --- a/src/xbt/mmalloc/mfree.c +++ b/src/xbt/mmalloc/mfree.c @@ -12,6 +12,7 @@ #include "mmprivate.h" #include "xbt/ex.h" +#include "mc/mc.h" /* Return memory to the heap. Like `mfree' but don't call a mfree_hook if there is one. */ @@ -53,6 +54,11 @@ void mfree(struct mdesc *mdp, void *ptr) mdp -> heapstats.bytes_free += mdp -> heapinfo[block].busy_block.size * BLOCKSIZE; + if(MC_is_active()){ + if(mdp->heapinfo[block].busy_block.ignore == 1) + MC_remove_ignore_heap(ptr, mdp -> heapinfo[block].busy_block.busy_size); + } + /* Find the free cluster previous to this one in the free list. Start searching at the last block referenced; this may benefit programs with locality of allocation. */ @@ -82,6 +88,8 @@ void mfree(struct mdesc *mdp, void *ptr) abort(); } mdp->heapinfo[block+it].type = -1; + mdp->heapinfo[block+it].busy_block.ignore = 0; + } block = i; @@ -102,6 +110,7 @@ void mfree(struct mdesc *mdp, void *ptr) abort(); } mdp->heapinfo[block+it].type = -1; + mdp->heapinfo[block+it].busy_block.ignore = 0; } } @@ -155,9 +164,14 @@ void mfree(struct mdesc *mdp, void *ptr) THROWF(system_error, 0, "Asked to free a fragment that is already free. I'm puzzled\n"); } + if(MC_is_active()){ + if(mdp->heapinfo[block].busy_frag.ignore[frag_nb] == 1) + MC_remove_ignore_heap(ptr, mdp->heapinfo[block].busy_frag.frag_size[frag_nb]); + } /* Set size used in the fragment to -1 */ mdp->heapinfo[block].busy_frag.frag_size[frag_nb] = -1; - + mdp->heapinfo[block].busy_frag.ignore[frag_nb] = 0; + // fprintf(stderr,"nfree:%zu capa:%d\n", mdp->heapinfo[block].busy_frag.nfree,(BLOCKSIZE >> type)); if (mdp->heapinfo[block].busy_frag.nfree == (BLOCKSIZE >> type) - 1) { @@ -168,7 +182,8 @@ void mfree(struct mdesc *mdp, void *ptr) mdp->heapinfo[block].type = 0; mdp->heapinfo[block].busy_block.size = 1; mdp->heapinfo[block].busy_block.busy_size = 0; - + mdp->heapinfo[block].busy_block.ignore = 0; + /* Keep the statistics accurate. */ mdp -> heapstats.chunks_used++; mdp -> heapstats.bytes_used += BLOCKSIZE; @@ -192,3 +207,4 @@ void mfree(struct mdesc *mdp, void *ptr) break; } } +