X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a308bb217e5abbd93413e23cb59776c3f6d1d8db..41c54c2772412935a5c8fc9f2d09e623c0383ae7:/src/xbt/mmalloc/mmorecore.c diff --git a/src/xbt/mmalloc/mmorecore.c b/src/xbt/mmalloc/mmorecore.c index f47c53995d..4a9cbb55e3 100644 --- a/src/xbt/mmalloc/mmorecore.c +++ b/src/xbt/mmalloc/mmorecore.c @@ -43,12 +43,17 @@ ? -1 \ : (MDP) -> fd) -/* Get core for the memory region specified by MDP, using SIZE as the - amount to either add to or subtract from the existing region. Works - like sbrk(), but using mmap(). - - It never returns NULL. Instead, it dies verbosely on errors. */ - +/** @brief Add memoty to this heap + * + * Get core for the memory region specified by MDP, using SIZE as the + * amount to either add to or subtract from the existing region. Works + * like sbrk(), but using mmap(). + * + * It never returns NULL. Instead, it dies verbosely on errors. + * + * @param mdp The heap + * @param size Bytes to allocate for this heap (or <0 to free memory from this heap) + */ void *mmorecore(struct mdesc *mdp, ssize_t size) { ssize_t test = 0; @@ -59,8 +64,6 @@ void *mmorecore(struct mdesc *mdp, ssize_t size) void *mapto; /* Address we actually mapped to */ char buf = 0; /* Single byte to write to extend mapped file */ -// fprintf(stderr,"increase %p by %u\n",mdp,size); - if (size == 0) { /* Just return the current "break" value. */ result = mdp->breakval; @@ -108,17 +111,15 @@ void *mmorecore(struct mdesc *mdp, ssize_t size) } /* Let's call mmap. Note that it is possible that mdp->top - is 0. In this case mmap will choose the address for us */ - if(mdp->base==mdp->top) - mapto = mmap(mdp->top, mapbytes, PROT_READ | PROT_WRITE, + is 0. In this case mmap will choose the address for us. + This call might very well overwrite an already existing memory mapping + (leading to weird bugs). + */ + mapto = mmap(mdp->top, mapbytes, PROT_READ | PROT_WRITE, MAP_PRIVATE_OR_SHARED(mdp) | MAP_IS_ANONYMOUS(mdp) | MAP_FIXED, MAP_ANON_OR_FD(mdp), foffset); - else { - size_t old_size = (char*)mdp->top - (char*)mdp->base; - mapto = mremap(mdp->base, old_size, old_size+size, 0); - } - if (mapto == (void *) -1/* That's MAP_FAILED */) { + if (mapto == MAP_FAILED) { char buff[1024]; fprintf(stderr,"Internal error: mmap returned MAP_FAILED! error: %s\n",strerror(errno)); sprintf(buff,"cat /proc/%d/maps",getpid()); @@ -129,10 +130,14 @@ void *mmorecore(struct mdesc *mdp, ssize_t size) abort(); } + if (mdp->top == 0) + mdp->base = mdp->breakval = mapto; + mdp->top = PAGE_ALIGN((char *) mdp->breakval + size); result = (void *) mdp->breakval; mdp->breakval = (char *) mdp->breakval + size; } else { + /* Memory is already mapped, we only need to increase the breakval: */ result = (void *) mdp->breakval; mdp->breakval = (char *) mdp->breakval + size; }