X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1fe09f54bac3c43710f19de37bcec99cd19b92a8..974fb38ffe5712b82211fe2fab3a9bb32a4ac7a4:/src/xbt/mmalloc/mfree.c diff --git a/src/xbt/mmalloc/mfree.c b/src/xbt/mmalloc/mfree.c index cd0fd33ccb..ca48a1e80f 100644 --- a/src/xbt/mmalloc/mfree.c +++ b/src/xbt/mmalloc/mfree.c @@ -1,15 +1,16 @@ -/* Free a block of memory allocated by `mmalloc'. - Copyright 1990, 1991, 1992 Free Software Foundation +/* Free a block of memory allocated by `mmalloc'. */ - Written May 1989 by Mike Haertel. - Heavily modified Mar 1992 by Fred Fish. (fnf@cygnus.com) */ - -/* Copyright (c) 2010. The SimGrid Team. +/* Copyright (c) 2010-2014. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ +/* Copyright 1990, 1991, 1992 Free Software Foundation + + Written May 1989 by Mike Haertel. + Heavily modified Mar 1992 by Fred Fish. (fnf@cygnus.com) */ + #include "mmprivate.h" #include "xbt/ex.h" #include "mc/mc.h" @@ -34,7 +35,7 @@ void mfree(struct mdesc *mdp, void *ptr) block = BLOCK(ptr); if ((char *) ptr < (char *) mdp->heapbase || block > mdp->heapsize) { - fprintf(stderr,"Ouch, this pointer is not mine. I refuse to free it. I refuse it to death!!\n"); + fprintf(stderr,"Ouch, this pointer is not mine, I refuse to free it. Give me valid pointers, or give me death!!\n"); abort(); } @@ -54,8 +55,10 @@ void mfree(struct mdesc *mdp, void *ptr) mdp -> heapstats.bytes_free += mdp -> heapinfo[block].busy_block.size * BLOCKSIZE; - if(mdp->heapinfo[block].busy_block.ignore == 1) - remove_ignore_heap(ptr, mdp -> heapinfo[block].busy_block.busy_size); + if(MC_is_active()){ + if(mdp->heapinfo[block].busy_block.ignore > 0) + 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 @@ -86,8 +89,6 @@ void mfree(struct mdesc *mdp, void *ptr) abort(); } mdp->heapinfo[block+it].type = -1; - mdp->heapinfo[block+it].busy_block.ignore = 0; - } block = i; @@ -108,7 +109,6 @@ void mfree(struct mdesc *mdp, void *ptr) abort(); } mdp->heapinfo[block+it].type = -1; - mdp->heapinfo[block+it].busy_block.ignore = 0; } } @@ -162,13 +162,15 @@ 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(mdp->heapinfo[block].busy_frag.ignore[frag_nb] == 1) - remove_ignore_heap(ptr, mdp->heapinfo[block].busy_frag.frag_size[frag_nb]); + if(MC_is_active()){ + if(mdp->heapinfo[block].busy_frag.ignore[frag_nb] > 0) + 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) { @@ -179,7 +181,6 @@ 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++;